1

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

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

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

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

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

4

1 回答 1

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')

});

这是你的小提琴

希望能帮助到你..

于 2013-08-14T12:56:56.043 回答