我正在尝试使用Weyland工具构建一个使用Breeze 1.4.6的Durandal项目。到目前为止,我已经成功完成了任务,并生成了一个main-built.js。但是,当我像这样运行main-built.js时:
<script src="~/Areas/Email/App/main-built.js"></script>
我在以下行中显示错误(最后显示):
define = function (name, deps, callback) {
//This module may not have dependencies
if (!deps.splice) {
错误是:
Uncaught TypeError: Cannot read property 'splice' of undefined
这是因为Breeze未定义deps。我正在使用谷歌浏览器。
有关该主题的任何帮助?
非常感谢! 托米