抱歉,如果这是重复的,但我正在浏览 Breezejs.com 上的文档,我想看看是否可以详细说明“最佳实践”
我正在使用 .extend 在父对象上加载一些导航属性。当我想将实体添加到该可观察数组时,我正在使用模式弹出窗口。我看到在调用模态的视图上添加了空白实体,但是当我在创建实体并保存可观察数组后关闭模态时不会更新,只会将主页的新实体留空。
http://www.breezejs.com/documentation/navigation-properties说在 Observable 数组中使用 .push() 会将对象添加到数组中,所以只是想知道我是否正确执行此操作或是否存在更好的方法。看起来很有趣的原因是我必须将实体从我的模态返回到我的父视图然后推送它,并认为也许有更好的方法。
编辑
从我的父视图模型中,我使用 Durandal.js 的 app.js 来显示一个模态。
var addComment = function () {
rfcommentcreate.responseFormId(responseForm().id());
app.showModal(rfcommentcreate).then(function (modalResult) {
if (!modalResult) { datacontext.cancelChanges(); return false; }
console.log(modalResult); // Just to make sure the result is not null and of the right type
responseForm.responseFormResponseFormComments.push(modalResult);
return true;
});
};
当我保存模式时,我将创建的对象传回。
datacontext.saveChanges()
.fail(initFailed)
.fin(complete);
function complete() {
self.modal.close(responseFormComment()); // responseFormComment is the entity that I work on in the modal
}
ResponseForm.ResponseFormResponseFormComments 是 ResponseForm 的导航属性。
上面的代码将实体添加到 Breeze 的实体管理器中,但 Knockout 在创建后并未对其进行跟踪。这似乎是一个真实的陈述,因为在我的父视图的 Html 中,我看到了类似这样的内容
:@
从 HTML 代码
<span data-bind="text: user().fullName"></span> : <span data-bind="text: message"></span> @ <span data-bind="DateTime: commentDt"></span>
在模态中创建实体后
根据breezejs.com 上的导航属性页面,如果我正确解释它应该可以工作。
A:它没有,并且可能是我的错 B:有没有更好的方法来跟踪导航属性而不必将它们“推”到一个数组中?
请注意,我们推送到 Orders 而不是 Orders()。