我正在使用 RequireJS 2 以及骨干网和伙伴来构建网站。每个视图的开头通常是这样的:
define([
'libs/jquery',
'libs/underscore',
'libs/backbone',
'text!templates/coletas/agendamento.html',
], function(...
我的问题是最后一行希望js/templates/coletas/agendamento.html
在/js/
. 有没有办法避免这种情况并将基本网址设置为./templates/
每次我使用文本插件时?
我也不能使用绝对路径,因为我不知道我的代码最终会在服务器中的什么位置。