如何在emberjs中使用Ember.Select?

时间:2013-08-12 17:36:16

标签: ember.js ember-data

我已发布了我的代码here

我是ember.js的新手,还处于学习阶段。我正在尝试构建简单的CRUD程序。

我正在尝试使用Ember.Select在上面的CRUD程序中使用select但我无法使用它。

      {{view Ember.Select
        contentBinding="Objtype.content"
        valueBinding="Objtype.selected"
        prompt="Please select a type"
        }}  

如何在上面的CRUD程序中使用ember.select来创建/更新记录?

1 个答案:

答案 0 :(得分:1)

改变这个:

Objtype: Ember.Object.create({
  selected: null,
  content: ['1', 2]
})

到此:

objtype: Ember.Object.create({
  selected: null,
  content: ['1', 2]
})

您应该注意到我为'o'更改了'O',您还需要更新您的选择以使用正确的属性名称