0

我有一个 1:n 的关系。例如,一有 n个人。如何使用选择框为实体人员创建表单以将其添加到组中?我尝试过类似以下视图的方法:

{{! Create Person}}
{{view Ember.TextField valueBinding='model.text'}}
{{view Ember.Select 
  valueBinding='model.group'
  optionValuePath='content.id'
  optionLabelPath='content.name'
  contentBinding='App.Group.FIXTURES'
  prompt='Please Select'}}

我如何修改contentBinding才有意义?我正在使用 ember.js 1.0.0-RC4。

4

1 回答 1

1

你想使用selectionBinding而不是valueBinding

假设person在当前模板中可用:

{{view Ember.Select
       contentBinding='App.Group.FIXTURES'
       optionValuePath="content"
       optionLabelPath="content.name"
       selectionBinding="person.group"}}
于 2013-05-31T23:47:02.433 回答