require.config({
paths: {
jquery: 'libs/jquery',
underscore: 'libs/underscore',
}
});
define([
'jquery',
'underscore',
], function($,_){
var test = _.template("hello: <%= name %>",{name:"warren"});
});
鉴于上述代码使用 requirejs 加载 jquery 和下划线,为什么我会收到此错误...
Uncaught TypeError: Cannot call method 'template' of null
所有 JS 似乎都在加载...错误指向 _.template 行。这真让我抓狂...