我有一个使用 require.js v2.0.4、knockout.js v2.2.0 和 jQuery Mobile 的 ASP.NET Web API 单页应用程序(所有 HTML5/CSS3/JavaScript 都与 Web API 对话以传输 JSON 数据) v1.2.0。使用 Nuget,我升级到了最新版本的 require.js (v2.1.1)。(注意:我只使用了 require.js。我删除了 r.js。过去我从来不需要它,就在一天前。)而且,现在我的应用程序无法正常工作。
在浏览器工具的网络选项卡上,我可以看到正在以正确的顺序下载脚本(即 jquery、jquery.mobile、其他脚本,包括 knockout.js,然后是 require.js)。但是,在错误控制台上,我看到以下错误:
require.js line 1746
Error: Mismatched anonymous define() module: function ($) {
factory( $, root, doc );
return $.mobile;
}
require.js line 1746
Mismatched anonymous define() module: function (koExports) {
// Internally, all KO objects are attached to koExports (even the non-exported ones whose names will be minified by the closure compiler).
// In the future, the following "ko" variable may be made distinct from "koExports" so that private objects are not externally reachable.
var ko = typeof koExports !== 'undefined' ? koExports : {};
(a lot more error message here – left out for brevity)
最新版本的 require.js、knockout.js 和 jQuery Mobile 是否存在兼容性问题?有没有其他人对同样的东西有问题/错误?我怎样才能使所有这些 3rd 方 JavaScript 库一起工作?
谢谢。