gpt4 book ai didi

javascript - 主干 model.unset 不删除属性

转载 作者:行者123 更新时间:2023-12-03 11:11:41 25 4
gpt4 key购买 nike

我不确定为什么 model.unset() 事件没有触发。

我正在根据输入模糊事件设置模型的 View 。当输入具有值时,模型将使用该值进行设置。如果该值从表单中删除,我想从模型中删除该属性,但我的 model.unset() 不起作用,我不确定为什么。

这是我当前使用 Backbone 的代码

JS:

var TheModel = Backbone.Model.extend({    
});

var theModel = new TheModel();

var TheFormView = Backbone.View.extend({
el: '.js-form',

initialize: function() {
this.model = theModel;

},

template: _.template( $('#form-template').html() ),

render: function() {

this.$el.html( this.template({settings: this.model.toJSON()}) );

return this;
},

events: {
'blur .js-input': 'updateModel'
},

updateModel: function(e) {
var name = e.target.name,
value = e.target.value;

if (value !== '') {
this.model.set(name, value);
}
// Why does unset not get fired here?
else if ( this.model.has(name) && this.model.get(name) === '' ) {
this.model.unset(name);
}
}

});

var TheOutputView = Backbone.View.extend({
el: '.js-output',

initialize: function() {
this.model = theModel;

this.listenTo(this.model, 'change', this.render);
},

template: _.template( $('#output-template').html() ),

render: function() {

this.$el.html( this.template({settings: this.model.toJSON()}) );

return this;
},

});

var theFormView = new TheFormView();
theFormView.render();

var theOutputView = new TheOutputView();
theOutputView.render();

HTML 和模板:

<div class="js-form">
</div>
<div class="js-output">
</div>

<script type="text/template" id="form-template">
<h1>Form</h1>
<form action="" method="Post">
<div>
<label for="firstName">First Name:</label>
<input type="text" class="js-input" id="firstName" name="f_Name" />
</div>
<div>
<label for="lastName">Last Name:</label>
<input type="text" class="js-input" id="lastName" name="l_Name" />
</div>
</form>
</script>

<script type="text/template" id="output-template">
<div>
f_Name = <%- settings.f_Name %>
<br />
l_Name = <%- settings.l_Name %>
</div>
</script>

最佳答案

您有一个简单的逻辑错误 - 您不应在支票中包含 this.model.get(name) === ''

事实上,前面的if意味着你不能将Model的name属性设置为空字符串。因此,除非您可以在应用程序中的其他位置将其设置为空字符串,否则 else if 条件永远都不会得到满足。

这应该按您的预期工作:

if (value !== '') {
this.model.set(name, value);
}
else if ( this.model.has(name)) {
this.model.unset(name);
}

关于javascript - 主干 model.unset 不删除属性,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/27554501/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com