**更新:**这是在localhost上运行。
这是我的控制器:
app.controller('adsController',
['$scope',
function($scope){
$scope.obj = {
prop : "Hello"
}
}])
指令:
app.directive('ads', function() {
return {
restrict: 'AE',
scope: { obj: '=' },
templateUrl: '/modules/ads/templates/ads-template.html'
};
});
目录:
我在目录中与<ads/>
相同的深度调用ads-template.html
自定义指令,但我遇到404
错误。