requirejs中的绝对路径

时间:2014-02-07 13:13:31

标签: requirejs mustache

我正在使用带有这样的小胡子模板的requirejs

define(['text!templates/popups.html','text!templates/buildqueue.html','mustache'], function (popups,buildqueue,Mustache) {});

我有像这样的文件夹结构

script/templates/templates/popups.html

当我处于生产模式时,文件夹结构为

prod/script/templates/templates/popups.html

我希望模板文件夹在脚本文件夹之外,如。

/templates
/script
/prod/script

我可以将路径引用为文本!../ templates / templates / popups.html但是只要我处于产品模式,.. /就错了。

如何在模板文件夹中创建一个url,该文件夹在脚本/和prod / script中被引用时有效?

0 个答案:

没有答案