我克隆了这个 repo,然后根据我的文件夹结构放置 jquery.mobile.router.js。这是我的requirejs配置
//bootstrap.js content
require.config({
// The shim config allows us to configure dependencies for
// scripts that do not call define() to register a module
shim: {
underscore: {
exports: '_'
},
jquery: {
exports: 'jquery'
},
backbone: {
deps: [
'underscore',
'jquery'
],
exports: 'Backbone'
},
backboneLocalstorage: {
deps: ['backbone'],
exports: 'Store'
},
jQueryMobile : {
deps:['jquery'],
exports: "jQueryMobile"
}
},
paths: {
jquery: 'js/vendor/jquery',
jQueryMobile: 'js/vendor/jquery.mobile.min',
underscore: 'js/vendor/underscore.min',
backbone: 'js/vendor/backbone',
backboneLocalstorage: 'js/plugins/localStorage',
text: 'js/plugins/text',
'jquery.mobile.router': 'js/plugins/jquery.mobile.router'
}
});
所有脚本都加载正常,但 jquery.mobile.router 没有加载。我的弗洛德结构如下
/app
/js
|-plugins
|-jquery.mobile.router.js
/bootstrap.js
谁能告诉我我做错了什么?提前致谢。