Angularjs路由无法获得' / webpage'

时间:2017-01-13 01:02:42

标签: angularjs-routing

首先,我要对格式化表示歉意。我是用手机发帖的。

在我的/public/js/app.js中我有这个

var app = angular.module("myApp", ["ngRoute"]);
app.config(function($routeProvider) {
    $routeProvider
    .when("/", {
        templateUrl : "/public/views/index.html"
    })
    .when("/packages", {
        templateUrl : "/public/views/packages.html"
    })
    .when("/contactus", {
        templateUrl : "/public/views/contactus.html"
    })
    .when("/signup", {
        templateUrl : "/public/views/signup.html"
    })
. otherwise({
redirectTo: "/";
});
});

在我的/public/index.html

我有以下

<html ng-App="myApp">
// All the angular script files including app.js
<body>
<div ng-view></div>

我的所有HTML文件都位于/ public / views /

我得到&#34;无法获得&#39; / contactus&#39;&#34;

或者任何不属于索引的网页。

任何帮助?

1 个答案:

答案 0 :(得分:0)

它应该是全部小写的ng-app并且你有;否则对象。你能试试吗?