我有如下指令:
var directiveFunction = function() {
return {
restrict: 'E',
templateUrl: '../medical/app/components/address/address.template.html',
controller: controllerFunction,
scope: {
address: '='
}
}
};
当我针对此指令运行test-case
时,它失败了。但当我将templateUrl
更改为低于它时,它会通过:
templateUrl:'components/address/address.template.html',
为什么不从relative
根路径开始?我的申请结构如下:
medical
-- app
-- components
--address-card
--address.template.html
我使用relative path from root
的原因,其他模块使用相同的directive
。