当我做
/sites/all/themes/theme/js/controller.js
$scope.template = 'partials/tpl.html'
/sites/all/themes/theme/js/index.html
<div ng-include='template'></div>
/sites/all/themes/theme/js/partials/tpl.html
<b>Ho boy!</b>
我基本上将与 angular 相关的所有内容都移到了 js 文件夹中。
它localhost/partials/tpl.html
会在我需要时返回localhost/sites/all/themes/js/partials/tpl.html
。如何在不使用绝对路径的情况下解决这个问题?