gpt4 book ai didi

javascript - 在 AngularJS 中使用内联模板

转载 作者:IT王子 更新时间:2023-10-29 02:46:47 25 4
gpt4 key购买 nike

我想加载一个内联 View 模板。

我将模板包装在 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>

最佳答案

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

您可能还会发现这个问题相关:Is there a way to make AngularJS load partials in the beginning and not at when needed?

关于javascript - 在 AngularJS 中使用内联模板,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/16124767/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com