Ember.js 改变Emberjs的属性

Ember.js 改变Emberjs的属性,ember.js,Ember.js,我是EmberJs新手,我正在做一个项目,我需要在ember cli生成的模板中添加javascript和css属性,我的困难在于找到javascript和css文件 When I search the project for the class or id, it shows me only what is in the dist that can not be changed Can anyone with emberJS experience help me make these cha

我是EmberJs新手,我正在做一个项目,我需要在ember cli生成的模板中添加javascript和css属性,我的困难在于找到javascript和css文件

When I search the project for the class or id, it shows me only what is in the dist that can not be changed

Can anyone with emberJS experience help me make these changes?






Template with i w[enter image description here][1]anna to work:

  <div class="top-banner">
    {{ top-banner pageBanner=model.news.banner }}
    {{ search-component exchangeTypes=model.exchangeType}}
  </div>

  {{bread-crumbs breadcrumbs=breadcrumbs}}

  <section class="container destaque noticia">
    {{title-content light=model.news.title}}
    <div class="row informacoes-news">
      <div class="col-xs-12 noticia-texto">
        {{{model.news.content}}}
      </div>
    </div>
  </section>

    {{share-bar}}
  <div class="col-md-1 col-xs-12 download-container">
      <a class="teste" href="{{model.news.pdf}}">Download</a>
  </div>

  {{featured-news type="featured_news" noticias=model.featuredNews news=true}}

  {{contact-widget states=model.brazilState}}

  {{rodape-sitemap}}
当我在项目中搜索类或id时,它只显示dist中无法更改的内容
有经验的人能帮我做这些改变吗?
带有i w[在此处输入图像描述][1]的模板要工作:
{{top banner pageBanner=model.news.banner}}
{{搜索组件exchangeType=model.exchangeType}
{{面包屑面包屑=面包屑}
{{title content light=model.news.title}
{{{model.news.content}}
{{共享条}}
{{featured news type=“featured_news”noticias=model.featuredNews news=true}}
{{contact widget states=model.brazilState}
{{rodape站点地图}}

以下是余烬旋转游戏中的基础知识概述:

听起来您继承了一些代码,而且花几个小时学习余烬指南教程会让您受益匪浅:

旅途愉快


application.hbs

<h1>{{appName}}</h1>

<h2>this is the application.hbs template (base template)</h2>

{{info-list}}

app.css


模板/组件/信息列表.hbs

<ul class='item-list'>
  <li>...</li>
</ul>

那么,您需要知道.css文件、模板和控制器在项目结构中的位置吗?到目前为止你都试了些什么?非常感谢,这很有帮助!此外,组件的.js和.hbs文件的工作方式与上面的控制器和模板对类似。您可以将其视为模块创建的“范围”。
body {
  background: lightgreen;
}
<ul class='item-list'>
  <li>...</li>
</ul>