我需要在“compositionComplete”中显示一条消息,但下一个代码不起作用:
function compositionComplete(view, parent) {
app.showMessage('This is a message.', 'Demo');
}
视图被挡住了,app.showMessage
没有出现。
我使用 Breeze 1.4.1、Durandal 2.0、Knockout 2.3.0、Bootstrap 3.0、jquery 2.0.3 和 shell cacheViews:true
。
javascript 控制台仅显示:
Binding plugins/messageBox
MessageBox {message: "This is a message.", title: "Demo", options: Array[1], __dialog__: Object, selectOption: function…}
system.js:75
我查看控制台,当存在 ko 或 Q 的数据绑定错误时出现问题。但我需要使用“app.showMessage”显示这些错误。
我在 IE 10、Firefox 23、Google Chrome 29 中进行了测试,但问题在三种浏览器中仍然存在。