我有一个Document
模型,它使用hasMany
关系为其定义了属性/属性。目的是能够自由地定义文档的不同区域中的内容,如header
,body
,footer
,同时还可以创建表示属性,如color
或{{1} }。
image
KF.Document = DS.Model.extend
title: DS.attr 'string'
documentAttributes: DS.hasMany 'documentAttribute'
KF.DocumentAttribute = DS.Model.extend
attrKey: DS.attr 'string'
attrValue: DS.attr 'string'
document: DS.belongsTo 'document'
返回Document.documentAttributes
所以为了呈现它,我可以执行以下操作:
DS.ManyArray
问题是我想直接访问密钥(使用代理吗?)所以我可以像这样直接绑定数据:
{{#each da in documentAttributes}}
<p>{{da.attrKey}} - {{da.attrValue}}</p> <!-- returns: "header - this is my header" -->
{{/each}}
我该如何处理?
答案 0 :(得分:0)
一种方法可以是增强一个em视图(对于勇敢者也可能是一个组件),或创建一个代理,它接收一个DocumentAttribute对象并动态定义一个名为attrKey的值的属性并返回值attrValue。您可以使用以下代码实现此目的,
http://emberjs.jsbin.com/ehoxUVi/2/edit
<强> JS 强>
App = Ember.Application.create();
App.Router.map(function() {
});
App.IndexRoute = Ember.Route.extend({
model: function() {
return createProxy(App.DocumentAttribute.create());
}
});
App.DocumentAttribute = Ember.Object.extend({
attrKey:"theKey",
attrValue:"theValue"
});
function createProxy(documentAttr){
App.DocumentAttributeProxy = Ember.ObjectProxy.extend({
createProp: function() {
_this = this;
var propName = this.get('attrKey');
if (!_this.get(propName)) {
return Ember.defineProperty(_this, propName, Ember.computed(function() {
return _this.get('attrValue');
}).property('attrKey'));
}
}.observes('content')
});
var proxy = App.DocumentAttributeProxy.create();
proxy.set('content',documentAttr);
return proxy;
}
<强> HB 强>
<script type="text/x-handlebars">
<h2>Welcome to Ember.js</h2>
{{outlet}}
</script>
<script type="text/x-handlebars" data-template-name="index">
{{attrKey}}
<br/>
{{attrValue}}
<br/>
{{theKey}}
</script>
答案 1 :(得分:0)
我无法获得melc的解决方案来处理关系返回的DS.ManyArray。
但是他的例子给了我一些想法,我做了以下几点。基本上通过控制器上的“快捷键”映射项目。
KF.DocumentsShowRoute = Ember.Route.extend
setupController: (controller, model) ->
controller.set('model', model)
# make an `Object` to store all the keys to avoid conflicts
controller.set('attrs', Ember.Object.create())
# loop through all `DocumentAttributes` in the `DS.ManyArray` returned by the relationship,
# get the `attrKey` from each item and make a shortcut to the item under `attrs` object
model.get('documentAttributes').forEach (item, index, enumerable) ->
key = item.get('attrKey')
controller.get('attrs').set(key, item)
模板,其中标题是attrKey
{{input value=attrs.header.attrValue}}