无法使用requireJS加载javascript模板文件

时间:2013-04-22 21:12:26

标签: requirejs

以下代码不起作用:

define([
  'jquery',
  'lodash',
  'backbone',
  'mustache',
  'text!/app/js/templates/TreeCombo/TreeCombo.html' //Is this right?
  ], function($, _, Backbone, Mustache, MyTemplate){
 ...
})

我在控制台中收到以下错误消息:

GET http://localhost:8888/app/js/text.js 404 (File not found) 

似乎requireJS没有识别出“文字!”标签

1 个答案:

答案 0 :(得分:1)

您需要在项目中包含"text" plugin(并根据需要在require.config中设置其路径)。它没有捆绑在一起。