1

我想将所有模板放在脚本标签中,并从我的指令中使用它们,而无需使用 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 而不是在页面中寻找它,我做错了什么吗?

谢谢!

4

1 回答 1

1
<article-line data="myData"></article-line>

当您将articelLine指令放在上面时,将在您包含article_row.htmlng-template 并收到错误之前编译此行。

所以,你必须把ng-template它放在前面。

于 2014-03-01T02:53:31.213 回答