我正在制作一个玩具应用来学习余烬。我有属于风格的食谱。样式只包含name属性(以及隐式id)。我在新模板中设置选择字段时无法选择配方的样式。
以下是我目前为路线,控制器和模板提供的内容:
路线:
App.RecipesNewRoute = Ember.Route.extend({
model: function() {
return App.Recipe.createRecord({
title: '',
description: '',
instructions: ''
});
},
setupController: function(controller, model) {
controller.set('content', model);
}
});
控制器:
App.RecipesController = Ember.ArrayController.extend({});
App.RecipesNewController = Ember.ObjectController.extend({
create: function() {
this.transitionToRoute('recipes.show', this.content);
},
cancel: function() {
this.content.deleteRecord();
this.transitionToRoute('recipes.index');
},
buttonTitle: 'Add Beer Recipe'
});
模板:
recipes / new和form partial:
<script type="text/x-handlebars" data-template-name="recipes/new">
{{ partial 'recipes/form' }}
</script>
<script type="text/x-handlebars" data-template-name="recipes/_form">
{{ title }}
<form>
<fieldset>
<div>
<label {{bindAttr for="titleField.elementId"}}>Title</label>
{{view Ember.TextField valueBinding='title' name='title' viewName='titleField'}}
</div>
<div>
<label>Style</label>
{{view Ember.Select valueBinding='style' name='style' viewName='styleField' contentBinding='App.Style.find()'}}
</div>
<div>
<label {{bindAttr for='descriptionField.elementId'}}>Description</label>
{{view Ember.TextArea valueBinding='description' name='description' viewName='descriptionField'}}
</div>
<div>
<label {{bindAttr for='instructionsField.elementId'}}>Instructions</label>
{{view Ember.TextArea valueBinding='instructions' name='instructions' viewName='instructionsField'}}
</div>
<a href='#' {{action create target='controller'}}>{{buttonTitle}}</a>
</fieldset>
</form>
<a href='#' {{action cancel target='controller'}}>Cancel</a>
</script>
主要内容是:{{view Ember.Select valueBinding='style' name='style' viewName='styleField' contentBinding='App.Style.find()'}}
我也尝试在控制器中设置一个样式变量:
在RecipesNewController中:styles: App.Style.find()
和视图{{view Ember.Select valueBinding='style' name='style' viewName='styleField' contentBinding='styles' optionValuePath='styles.id' optionLabelPath='styles.name'}}
以及路径的setupController:controller.set('styles', App.Style.find())
(使用与在控制器中设置相同的视图代码)。
任何帮助都会很棒,我相信这很简单。
由于
更新
所以我想我差不多了。
在我的RecipesNewRoute的setupController中,我有controller.set('styles', App.Style.find());
。然后在我看来,我有{{view Ember.Select valueBinding='style' name='style' viewName='styleField' contentBinding='controller.styles' contentValuePath='content.id' contentLabelPath='content.name'}}
。现在我的问题是我已经填充了选择框,除了标签和值设置为<App.Style:ember407:100>
而不是id和名称。
答案 0 :(得分:6)
Ember Select使用optionValuePath和optionLabelPath,看起来您正在使用contentValuePath和contentLabelPath。
示例jsFiddle:http://jsfiddle.net/nrionfx/BJwLR/2/
来自余烬文档:http://emberjs.com/api/classes/Ember.Select.html
{{view Ember.Select
contentBinding="App.programmers"
optionValuePath="content.id"
optionLabelPath="content.firstName"}}