我有一个使用 requirejs 加载其模块的 Web 应用程序。Web 应用程序在任何桌面浏览器中都可以正常运行,与 Cordova 打包后也可以在 iOS 和 Android 上运行。但是在构建 Windows Phone 8 Cordova 应用程序时不起作用。
我收到以下错误:
“未找到视图:通过路径“text!views/shell.html”搜索“views/shell”
(我正在使用杜兰达尔)
我有以下应用程序结构:
- lib/require/require.js
- www/app/viewmodels/shell.js
- www/app/views/shell.html
- www/app/main.js
- www/index.html(包含行:)
- :
www/app/main.js包含以下代码:
requirejs.config({
//baseUrl: 'x-wmapp0:www/app',
baseUrl: 'app',
enforceDefine: true,
paths: {
'text': '../lib/require/text',
'durandal':'../lib/durandal/js',
'plugins' : '../lib/durandal/js/plugins',
'transitions' : '../lib/durandal/js/transitions',
'knockout': '../lib/knockout/knockout-2.3.0',
'bootstrap': '../lib/bootstrap3/js/bootstrap',
'jquery': '../lib/jquery/jquery-1.9.1',
'modules' : 'modules'
},
shim: {
'bootstrap': {
deps: ['jquery'],
exports: 'jQuery'
}
}
});
define(['durandal/system', 'durandal/app', 'durandal/viewLocator', 'bootstrap'], function (system, app, viewLocator, bootstrap) {
//>>excludeStart("build", true);
system.debug(true);
//>>excludeEnd("build");
app.title = 'MyApp';
app.configurePlugins({
router: true,
dialog: true,
widget: true
});
app.start().then(function() {
//Replace 'viewmodels' in the moduleId with 'views' to locate the view.
//Look for partial views in a 'views' folder in the root.
viewLocator.useConvention('viewmodels', 'views', 'views');
//Show the app by setting the root view model for our application with a transition.
app.setRoot('viewmodels/shell', 'entrance', 'applicationHost');
});
});
此代码可在除 WP8 之外的所有设备上完美运行。我尝试了行baseUrl: 'x-wmapp0:www/app'来设置 WP8 Cordova 内部使用的实际路径,但这不起作用。那是因为它不是以'/'或http开头的路径吗?
关于如何配置 requirejs 以便能够使用 requirejs 加载模块和视图的任何想法?