我在此处发布了我的代码here。 在这里,我试图绑定单选按钮(性别)来查看,但我不知道如何执行绑定?
在添加时,它应该提供选择性别的选项,但目前默认女性正在选择。
即使在保存时,它也不会在模型中保存任何数据。
male: function(){
return this.get('gender') == 'Male';
}.property('gender')
任何人都可以帮助我完成上述工作吗?
答案 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
希望有所帮助......