ember-2.0.0

    5熱度

    1回答

    我正在使用Ember 2.2.0 編寫用於將事件從組件傳播到路由(或任何嵌入組件)的組件時使用this.sendAction(…)。我最近檢查了文檔,發現他們建議採用另一種方法。 https://guides.emberjs.com/v2.2.0/components/triggering-changes-with-actions/ this.get('action')(); 由於灰燼被稱爲是

    5熱度

    1回答

    在Ember 2+中,有誰知道如何獲得對Ember Store的引用,以便排除JavaScript控制檯中的模型映射問題? 它可能通過Ember 1中的App.__container__.lookup,但這不再存在,並且很難找到關於此的文檔。 感謝

    0熱度

    1回答

    在Ember 2中,對於查詢字符串爲?q[a]=1&q[b]=2的URL,如何在控制器中獲取這些參數? 我可以得到一個單一的字符串(q=foo)和一個數組(q[]=1&q[]=2),但我無法得到像上面提到的對象。

    0熱度

    1回答

    一直在尋找幾個小時的解決方案沒有任何解決方案。我試圖創建一個使用自定義的餘燼車把幫手: Ember.Handlebars.helper('highlight', function(value, options) { var escaped = Handlebars.Utils.escapeExpression(value); return new Ember.Handlebar

    1熱度

    1回答

    組件屬性是否有一個約定或首選的命名約定? 我所看到的底線轉換: {{my-component initial-selection='...' on-selected=(action '...') }} 和駱駝套管: {{my-component initialSelection='...' onSelected=(action '...') }} 我還以爲燼,是一個固執己見框架,將強制執行

    2熱度

    1回答

    我試圖將多個.hbs片段呈現到它們各自的插座中。但是,下面的renderTemplate不起作用: renderTemplate: function() { // default behavior, renders the home template this.render(); this.render('hero', { // render the `hero`

    7熱度

    4回答

    例如: Ember組件允許您添加一個classNames數組,並且這些類將被添加到該組件的主div。 說,我們把這種現象稱之爲組件新的div export default Ember.Component.extend({ classNames: ['container'] }); 然後如果你渲染的時候,你會看到檢查這個組件: <div id="ember595" class="em

    0熱度

    1回答

    我有這個router: // app/router.js Router.map(function() { this.route('battles', function(){ this.route('battle', { path: ':id' }, function(){ this.route('combats', function() { this.

    5熱度

    1回答

    我在這條道路這個model: /my-project/app/models/my-model.js 而且我想在這條道路從route導入: /my-project/app/routes/battles/battle/combats/new.js 進口一句話是這樣的: import MyModel from '../../../../models/my-model'; 路徑瘋了,我得用嘗試

    0熱度

    1回答

    我有這個router: // app/router.js Router.map(function() { this.route('battle', function(){ this.route('combats'); }) }); 在搏鬥路線我可以訪問的戰鬥模式很容易使用: // app/routes/battle/combat.js this.modelF