我是Require.js的新手,需要一些帮助(相信我,我搜索了很多但仍然丢失了)。
在我的开发环境中,我需要阻止require缓存文件。
好的,我已经四处搜索并找到了这个解决方案Prevent RequireJS from Caching Required Scripts
但是当我把它放在我的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"]);
});
}
);
希望它对某人有用。