改变Emberjs的财产

时间:2017-04-17 20:23:48

标签: ember.js

我是EmberJs的新手,我正在开发一个项目,我需要在ember-cli生成的templantes中添加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}}

1 个答案:

答案 0 :(得分:0)

以下是余烬中基本要素的概述:https://ember-twiddle.com/f537e51449c1c49ae32794b9d15bc6ff?openFiles=templates.application.hbs%2C

听起来你继承了一些代码 - 并且像你一样,在Ember指南教程中花费了几个小时的时间:https://guides.emberjs.com/current

快乐旅行!


application.hbs

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

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

{{info-list}}


控制器/ application.js中

import Ember from 'ember';

export default Ember.Controller.extend({
  appName: 'this is a property value seen in the application template...',
});


app.css

body {
  background: lightgreen;
}


模板/组件/信息-list.hbs

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