我有一个模型'transaction',其中声明了一个subCategories数组。只要调用transactionsController的方法'add_subcagtegory',就会使用事务类型对象填充此数组。现在,当我尝试在嵌套循环(#collection)中渲染子类别时,我没有完成它。渲染数组控制器对象的外部循环(#each)工作正常。任何人都可以告诉如何渲染subCategories数组吗?
app.js
App.transaction=Em.Object.extend({
account:null,
date:null,
source:null,
description:null,
category:null,
flag_for_later:null,
amount:null,
category_id:null,
record_index:null,
isSubCategory:null,
subCategories:[]
});
App.transactionsController = Em.ArrayController.create({
content: [],
add_subcategory: function(param){
var records=this.toArray();
if (typeof(records[param.value -1].subCategories) === "undefined") {
records[param.value -1].subCategories = new Array();
}
var category=App.transaction.create({
account:"//",
date:"//",
source:"//",
description:"//",
category:" ",
flag_for_later:" ",
amount:null,
category_id:records[param.value -1].subCategories.length + 1,
isSubCategory:true
});
records[param.value -1].subCategories.push(category);
App.transactionsController.set('content',[]);
App.transactionsController.pushObjects(records);
App.array.push(obj1);
}
});
和模板:
<table>
{{#each App.transactionsController}}
<tr>
<td>{{account}}</td>
<td>{{date}}</td>
<td>{{source}}</td>
<td>{{view App.TextField class="span12" style="border:0px;" objcount=record_index fieldname="description" value=description}}</td>
<td>{{view App.TextField class="span12" style="border:0px;" objcount=record_index fieldname="category" value=category }}</td>
<td><button onclick="App.transactionsController.add_subcategory(this);" value="{{unbound record_index}}">+</button></td>
<td>{{view App.TextField class="span6" style="border:0px;" objcount=record_index fieldname="flag_for_later" value=flag_for_later }}</td>
<td>{{amount}}</td>
</tr>
{{#collection contentBinding="App.transactionsController.subCategories"}}
<b>content does,nt not render</b>
{{/collection}}
{{/each}}
</table>
在集合下的模板中,如何访问子类别?
答案 0 :(得分:2)
简单地将{{collection}}助手的内容绑定到this.subcategories(this
是您上下文中的事务)吗?
{{#collection contentBinding="this.subcategories"}}
<强>更新强>
这是一个jsfiddle:http://jsfiddle.net/Sly7/tRbZC/
请注意,ember版本是最新版本。你应该更新,因为0.9.5已经很老了。
我没有看到<select>
行为,但如果它不起作用,我认为你现在已经掌握了所有关键功能:)
答案 1 :(得分:0)
我将ember版本从最新修改为1.0之前,然后点击+工作。