我希望将所有模板放在脚本标记中,并从指令中使用它们,而不需要使用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
相反,在页面中查找它,我是否做错了什么?
谢谢