无法绑定单选按钮进行查看

时间:2013-08-14 10:45:35

标签: ember.js ember-data

我在此处发布了我的代码here。 在这里,我试图绑定单选按钮(性别)来查看,但我不知道如何执行绑定?

在添加时,它应该提供选择性别的选项,但目前默认女性正在选择。

即使在保存时,它也不会在模型中保存任何数据。

male: function(){
    return this.get('gender') == 'Male';
}.property('gender')

任何人都可以帮助我完成上述工作吗?

1 个答案:

答案 0 :(得分:1)

您可以通过定义视图

来完成此操作
App.TestView = Ember.View.extend({

classNameBindings : ['active'],
attributeBindings : ["value"],
click : function() {
    this.set("selection", this.get('value'))
},
active : function() {
    return this.get("value") == this.get("selection");   
}.property('selection')

});

这是您的Fiddle

希望有所帮助......