我是 Require.js 的新手,需要一些帮助(相信我,我搜索了很多但仍然迷路)。
在我的开发环境中,我需要防止需要缓存文件。好的,我已经四处搜索并找到了这个解决方案防止 RequireJS 缓存所需的脚本
但是当我把它放在我的 require.config 代码中时,我丢失了来自 jQuery 等的所有引用......
我得到的错误是:
Uncaught TypeError: undefined is not a function
Uncaught ReferenceError: jQuery is not defined
我认为我的代码有问题,但不知道是什么(依赖关系,引用......)。
在 main.js 中:
requirejs.config({
"urlArgs": "bust=" + (new Date()).getTime()
"baseUrl": "js/app",
"paths": {
"doctorWorklist": "doctor-worklist",
"jquery": "//ajax.googleapis.com/ajax/libs/jquery/1.9.1/jquery.min",
"bootstrap": "../lib/bootstrap.min",
"app": "app"
}
});
// Load the main app module to start the app
requirejs(["app"]);
在 app.js 中
define( ['jquery', 'bootstrap'], function( $ ) {
//my code here.
});
有什么建议么 ?
对糟糕的英语感到抱歉。:D
-- 9 月 18 日更新。我明白了!对于像我一样以require.js开头的人,上面相关的错误在main.js中
就我的目的而言,main.js 的代码必须是这样的:
requirejs.config({
"urlArgs": "bust=" + Math.random(),
"baseUrl": "js/app",
"paths": {
"doctorWorklist": "doctor-worklist",
"jquery": "//ajax.googleapis.com/ajax/libs/jquery/1.9.1/jquery.min",
"dataTables": "http://ajax.aspnetcdn.com/ajax/jquery.dataTables/1.9.4/jquery.dataTables.min",
"bootstrap": "../lib/bootstrap.min",
"bootstrapDatepicker": "../lib/bootstrap-datepicker.min",
"bootstrapSelect": "../lib/bootstrap-select.min",
"jPlayer": "../lib/jquery.jplayer.min",
"countdown": "../lib/jquery.countdown.min",
"countdownBR": "../lib/jquery.countdown-pt-BR.min",
"googleapi": "../lib/googlecharts-api",
"onrad": "onrad"
}
});
// Load the main app module to start the app
requirejs(["jquery"],
function($, jQuery) {
var jQuery = $;
// This moment, jQuery is completely loaded.
// Time to require external libs with jQuery dependencies
requirejs(
[
"dataTables",
"bootstrap",
"bootstrapDatepicker",
"bootstrapSelect"
]
, function($, jQuery) {
// External libs loaded !
// Time to required my app code
requirejs(["countdown", "countdownBR", "onrad"]);
});
}
);
希望它对某人有用。