gpt4 book ai didi

javascript - Angular 路线不起作用。

转载 作者:行者123 更新时间:2023-11-27 22:49:39 24 4
gpt4 key购买 nike

我正在学习 angularJS。我正在尝试实现教程视频中的代码,以使用 Route 在 html 页面上显示 View ,但显然我被卡住了,尽管我做的与教程中显示的完全相同,但我有不知道为什么它不起作用,我在互联网上搜索过但无效,请任何人指出我的错误。这是我的代码

Index.html

<html ng-app="App">
<head>
<link href="css/style.css" rel="stylesheet" type="text/css">

</head>
<body>
<div ng-view></div>
<script src="js/angular.js"></script>
<script src="js/angularRoute.js"></script>
<script src="App/Myapp.js"></script>
<script src="App/CustomerController.js"></script>

</body>
</html>

App/MyApp.js

var App=angular.module('App',['ngRoute']);

App.config(function($routeprovider)
{
$routeprovider
.when('/',{
controller:'CustomerController',
templateUrl:'App/views/customers.html'
})
.otherwise({ redirectTo:'/'});

});

views/customers.html

  <div class="heading">
<h1>Customers List</h1>
</div>
<div class="filterBox">
Filter:<input type="text" ng-model="CustomerFilter.name"/>
</div>
<table>
<th ng-click="sorter='CustomerID';reverse=!reverse">ID</th>
<th ng-click="sorter='name';reverse=!reverse">Name</th>
<th ng-click="sorter='city';reverse=!reverse">City</th>
<th ng-click="sorter='total_orders';reverse=!reverse">Total Orders</th>
<th ng-click="sorter='date';reverse=!reverse">Date of last Order</th>
<tr ng-repeat="cust in customers |filter:CustomerFilter|orderBy:sorter:reverse">
<td>{{ cust.CustomerID }}</td>
<td>{{ cust.name|uppercase }}</td>
<td>{{ cust.city |lowercase}}</td>
<td>{{ cust.total_orders|currency:'Rs' }}</td>
<td>{{ cust.date|date:'longDate' }}</td>
</tr>
</table>
<span> Total Customers:{{customers.length}}</span>

我有一个名为 CustomerController 的 Controller ,我没有将其粘贴到此处,因为它太大而无法容纳。

最佳答案

拼写错误,别忘了把p大写

$routeProvider

关于javascript - Angular 路线不起作用。,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/38165521/

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