UI-router
- 安裝:npm install --save angular-ui-router
- 配置路由狀態(tài)
angular.module("myApp").config(function($stateProvider,$urlRouterProvider){
$stateProvider
.state({
name:'main',
url:'./',
template('<div>this is a main</div>')
})
.state({
name:'home',
url:'/home',
template:'<p>this is home</p>'
})
.state({
name:'about',
url:'/about',
template:'<h3>Welcome hello</h3>'
})
//設(shè)置默認跳轉(zhuǎn)
$urlRouterProvider.otherwise('/')
}
)
多模塊初茶、多路由届搁、多控制器 處理方式
- 引入模塊
<script src="./angularjs/angular.js"></script>
<script src="./js/ctrl1.js"></script>
<script src="./js/ctrl2.js"></script>
<script src="node_modules/angular-ui-router/release/angular-ui-router.js"></script>
- 模塊依賴
var app = angular.module('myApp', ['ui.router', 'myApp.ctrl1', 'myApp.ctrl2']);
- 路由配置
app.config(function($stateProvider, $urlRouterProvider) {
$stateProvider.state({
name: 'main',
url: '/my',
templateUrl: './test.html',
controller: 'ctrl1'
})
/*
1.設(shè)置一個為空匹配 url:'/my'
2. 在增加一個 路由名字前半部份相同但是后面不同的名字
* */
.state({
name:'my.page',
url:'/:page'
})
.state({
name: 'home',
url: '/home',
templateUrl: './angularjs/app.html',
controller: 'ctrl2'
})
.state({
name: 'about',
url: '/about',
template: '<div>about</div>',
controller: 'ctrl3'
})
$urlRouterProvider.otherwise('/')
})
- $stateParams 獲取參數(shù)蚂子。
- 在控制器里面注入萌庆。能獲取地址欄后面跟的參數(shù)燥透。
-<ui-view ui-sref=' '></ui-view>
ui-sref
可以用來傳遞參數(shù)
- 在控制器里面注入萌庆。能獲取地址欄后面跟的參數(shù)燥透。