为什么“main”未显示在网址中?这是Plunker。
index2.html是工作文件。我已经将index2.html修改为index.html以包含路由,但它无法正常工作。
app.js有路由配置
(function() {
var app1 = angular.module('plunker', ["ngRoute"]);
app1.config(function($routeProvider) {
$routeProvider
.when("/main", {
templateUrl: "main.html",
controller: "ControllerFile.js"
})
.otherwise({
redirectTo: "/main"
})
})
} ());