gpt4 book ai didi

javascript - Knockback.js:当主干保存更新模型时,如何更新 View ?

转载 作者:塔克拉玛干 更新时间:2023-11-02 21:46:15 26 4
gpt4 key购买 nike

这是我第一次使用 Knockback.js .

我正在研究 Knockback 概念验证,但我很难在保存模型时更新 View 模型。在这种情况下,发生的事情是服务器返回一个新的 Domain 对象,其中设置了 id 字段,这意味着该对象现在存在于后端。一旦发生这种情况,我希望 UI 发生变化以反射(reflect)它现在已保存的事实。

这是我使用的代码:

<table cellspacing="0" class="listing-table" id="domainListTable">
<thead>
<tr>
<th scope="col">
Domain
</th>
</tr>
</thead>
<tbody data-bind="foreach: domains">
<tr>
<td>
<!-- ko if:save -->
<a data-bind="attr: { href: domainEditLinkdomainId, title: domain},text : domain">
<span data-bind="text: domain"></span>
</a>
<!-- /ko -->
<!-- ko ifnot:save -->
<input type="text" maxlength="250" style="display:inline-block;" class="medium-text-field" data-bind="value: domain"></input>
<input data-bind="click: save" style="display:inline-block;" type="submit" value="Save New Domain" alt="" title=""/>
<!-- /ko -->
</td>
</tr>
</tbody>
</table>
<br />
<input data-bind="click: addDomain" type="submit" value="Add New Domain" alt="" title=""/>

<script type="text/javascript">
var Domain = Backbone.Model.extend({
defaults: function() {
return {
domain: "New Domain"
};
},
});

var Domains = {};

Domains.Collection = Backbone.Collection.extend({
model: Domain,
url: '/cms/rest/poc/${customerId}/domains/'
});

var domains = new Domains.Collection();
domains.fetch();

var DomainViewModel = kb.ViewModel.extend({
constructor: function(model) {
kb.ViewModel.prototype.constructor.apply(this, arguments);

var self = this;

this.save = kb.observable(model, {
key: 'save',
read: (function() {
return !model.isNew();
}),
write: (function(completed) {
return model.save({}, {
wait: true,
success: function (model, response) {
console.log(model);
console.log(response);
console.log(self);
},
error: function(model, response) {
alert("Oh NooooOOOes you broked it!!!11!")
}
});
})
}, this);

this.domainEditLinkdomainId = ko.dependentObservable(function() {
if(!this.save())
return "";

return "cms?action=domainDetail&domainID=" + this.model().id;
}, this);
}
});

var DomainsViewModel = function(collection) {
this.domains = kb.collectionObservable(collection, { view_model: DomainViewModel });
this.addDomain = function() {
this.domains.push(new DomainViewModel(new Domain()));
};
};

var domainsViewModel = new DomainsViewModel(domains);

ko.applyBindings(domainsViewModel);
</script>

问题似乎是 model.save() 完成的 XMLHttpRequest 在保存 kb.observable 之后才返回读取,因此 html 部分未成功更新,因为它仍然将 model.isNew() 视为 true。

我一直在考虑几个不同的想法,正如您可能看到的那样,包括在可观察对象上使用 valueHasMutated 方法来指示模型已更新,但我不能也不知道该怎么做。

如有任何帮助,我们将不胜感激!

最佳答案

您可以在模型上收听 change:id 事件。

只有当模型的状态从新状态变为持久状态时才会触发。

关于javascript - Knockback.js:当主干保存更新模型时,如何更新 View ?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/13185985/

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