82

我想加载一个内联视图模板。

我将模板包装在 type 的脚本标记中text/ng-template,并将 id 设置为temp1.html. 这就是我的模块配置的样子

learningApp.config(function ($routeProvider) {
    $routeProvider
        .when("/first",{ controller: "SimpleController", templateUrl: "temp1.html"})
        .when("/second", {controller: "SimpleController", templateUrl: "temp2.html"})
        .otherwise({redirectTo : "/first"});
});

它在我的控制台窗口中告诉我GET http://localhost:41685/temp1.html 404 (Not Found),这意味着它正在寻找该名称的文件。

我的问题是:如何配置我的路线以使用内联模板?

更新:这是我的服务器渲染 DOM 的样子

<!DOCTYPE html>
<html>
<head>
    <script src="/Scripts/angular.js"></script>
    <link href="/Content/bootstrap.css" rel="stylesheet"/>
</head>
<body>
    <div class="container">       
    <h2>Getting Started with Angular</h2>
    <div class="row">
        <div class="panel" ng-app="LearningApp">
            <div ng-view></div>
        </div>
    </div>

<script type="text/ng-template" id="temp1.html">
    <div class="view">
        <h2>First View</h2>
        <p>
            Search:<input type="text" ng-model="filterText" />
        </p>
        <ul class="nav nav-pills">
            <li ng-repeat="cust in customers | orderBy:'name' | filter: filterText "><a href="#">{{cust.name}} - {{cust.school}}</a></li>
        </ul>
    </div>
</script>

<script type="text/ng-template" id="temp2.html">
    <div class="view">
        <h2>Second View</h2>
        <p>
           Search:<input type="text" ng-model="filterText" />
        </p>
        <ul class="nav nav-pills">
            <li ng-repeat="cust in customers | orderBy:'name' | filter: filterText "><a href= "#">{{cust.name}} - {{cust.school}}</a></li>
        </ul>
    </div>
</script>
    </div>
    <script src="/Scripts/jquery-1.9.1.js"></script>
    <script src="/Scripts/bootstrap.js"></script>
    <script src="/Scripts/app/LearningApp.js"></script>
 </body>
</html>
4

2 回答 2

111

Ody,你走对了,唯一的问题是标签在使用指令的 DOM 元素之外。ng-app如果将其移动到<body ng-app="LearningApp">元素内联模板应该可以工作。

您可能还会发现这个问题相关:有没有办法让 AngularJS 在开始时而不是在需要时加载部分?

于 2013-04-20T21:00:13.567 回答
33

尝试使用 script-Element 的 id-Attribute 来设置模板的名称应该可以工作。

<script type="text/ng-template" id="temp1.html">
   ... some template stuff
</script>
于 2013-04-20T20:22:22.937 回答