admin管理员组文章数量:1339082
On the video watch page with the url
/watch/video_id
, I had a ng app. The directive is shown as below.
app.directive('myApp', function() {
return {
restrict: 'E',
templateUrl: 'ng-templates/myTemplate.html',
link: function(scope, elem, attrs) {
},
controller: 'Controller'
};
});
Since the templateUrl is the relative path, it will try to find the template in
'/watch/ng-templates/myTemplate.html'
which is an error.
I want to put all the templates in the ng-templates folder. But it won't work if the ng app always looks for the relative path. Is there a way to configure the app making it to look for '/ng-template/myTemplate.html'?
On the video watch page with the url
/watch/video_id
, I had a ng app. The directive is shown as below.
app.directive('myApp', function() {
return {
restrict: 'E',
templateUrl: 'ng-templates/myTemplate.html',
link: function(scope, elem, attrs) {
},
controller: 'Controller'
};
});
Since the templateUrl is the relative path, it will try to find the template in
'/watch/ng-templates/myTemplate.html'
which is an error.
I want to put all the templates in the ng-templates folder. But it won't work if the ng app always looks for the relative path. Is there a way to configure the app making it to look for '/ng-template/myTemplate.html'?
Share Improve this question asked Jul 17, 2013 at 20:17 Yujun WuYujun Wu 3,01212 gold badges41 silver badges56 bronze badges1 Answer
Reset to default 14Did you try to add leading slash to templateUrl, like
templateUrl: '/ng-templates/myTemplate.html',
本文标签: javascriptangular js templateUrl with absolute pathStack Overflow
版权声明:本文标题:javascript - angular js templateUrl with absolute path - Stack Overflow 内容由网友自发贡献,该文观点仅代表作者本人, 转载请联系作者并注明出处:http://www.betaflare.com/web/1743568613a2504029.html, 本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌抄袭侵权/违法违规的内容,一经查实,本站将立刻删除。
发表评论