Angular 添加路由
阿新 • • 發佈:2017-08-04
otherwise html out rec control conf ctrl fun main
var app=angular.module(‘kaifanla‘,[‘ng‘,‘ngRoute‘]);
app.config(function($routeProvider){
//添加路由
$routeProvider
.when(‘/文件名‘,{
templateUrl:‘tpl/start.html‘,
controller:‘startCtrl‘
})
.when(‘/文件名‘,{
templateUrl:‘tpl/main.html‘,
controller:‘mainCtrl‘
})
.when(‘/文件名‘,{
templateUrl:‘tpl/detail.html‘,
controller:‘detailCtrl‘
})
.when(‘/文件名/:id‘,{
templateUrl:‘tpl/detail.html‘,
controller:‘detailCtrl‘
})
.when(‘/文件名‘,{
templateUrl:‘tpl/order.html‘,
controller:‘orderCtrl‘
})
.when(‘/文件名/:id‘,{
templateUrl:‘tpl/order.html‘,
controller:‘orderCtrl‘
})
.when(‘/文件名‘,{
templateUrl:‘tpl/myOrder.html‘,
controller:‘myOrderCtrl‘
})
.otherwise({redirectTo:‘/文件名‘});
});
Angular 添加路由