我正在关注以下教程:
http://javascriptplayground.com/blog/2012/07/requirejs-amd-tutorial-introduction
我基本上是在制作一个需要“jquery”和“下划线”的简单模板模块
这是我的 app.js
require.config({
paths: {
"jquery": "https://ajax.googleapis.com/ajax/libs/jquery/1.7.2/jquery.min",
"underscore": "http://cdnjs.cloudflare.com/ajax/libs/underscore.js/1.4.3/underscore-min"
}
});
require(['template'], function(template) {
//Template is undefined
console.log(template);
});
这是我的 template.js
define(['underscore', 'jquery'], function()
{
var showName = function(n)
{
var temp = _.template("Hello <%= name %>");
$("body").html(temp({name: n}));
};
return
{
showName: showName
};
});
我已经验证所有脚本都通过谷歌浏览器的网络选项卡拉入,但未定义模板回调。
编辑:似乎错误是由{
在另一行返回引起的。我以前从未使用过 javascript 遇到过这种情况……这有规则吗?