我想将所有模板放在脚本标签中,并从我的指令中使用它们,而无需使用 ajax 请求。
这是我的模板:
<script id="article_row.html" type="text/ng-template">
<tr>
<td class="article-id">[[ article.id ]]</td>
<td>[[ article.title ]]</td>
<td>[[ article.user_id ]]</td>
<td>[[ article.created_at ]]</td>
<td>
<article-restore id="article.id"></article-restore>
</td>
</tr>
</script>
这是我的指令:
app.directive("articleLine", [function(){
return {
return: 'E',
scope: {
article : "=data"
},
templateUrl: "article_row.html"
};
}]);
加载时,我在控制台中收到此错误:
Error: Failed to load template: article_row.html
我在控制台中看到浏览器正试图从中获取它http://localhost/articles/article_row.html
而不是在页面中寻找它,我做错了什么吗?
谢谢!