您好,登錄后才能下訂單哦!
簡介
angularJs自身提供路由ng-router,但是ng-router不是很好用,配置項零散,好比Vue提供的組件傳值一樣,雖然提供給你了用法,但是開發(fā)過程中邏輯一多用著萌萌的,所以我們拋開ng-router來看ui-router。
引入ui-router
我們可以去bootCDN搜索ui-router,本地創(chuàng)建js文件,將代碼copy進去使用,這樣就可以打入本地使用了,但是要注意的是,Angular的main.js一定要在ui-router之前引用,注意一下先后順序問題。
例如:
<script src="angular.main.js"></script> <script src="angular-ui-router.js"></script>
配置ui-router
//angular.module("moduleName",dep); 定義模塊依賴(兩個參數(shù)) //angular.module("moduleName"); 獲取模塊 (一個參數(shù)) var app = angular.module("myApp",["ui-router"]); app.config(["$stateProvider","$urlRouterProvider",function($stateProvider){ //app.config配置項 //$stateProvider 狀態(tài)供應(yīng)商,(名字可以看出關(guān)于路由的一系列配置需要由$stateProvider完成) //$urlRouterProvider 路由重定向 $stateProvider.state("home",{ url: "/home" template: "<h2>首頁</h2>" }) .state("about",{ url: "/about" template: "關(guān)于我們" }); $urlRouterProvider.otherwise("home") }])
頁面配置
<div ui-view></div> //相當(dāng)于Vue中的插槽,單頁面應(yīng)用切換路由用來顯示當(dāng)前路由界面 <a ui-sref="home">首頁</a> //Angular默認(rèn)會轉(zhuǎn)換為href <a ui-sref="about">關(guān)于我們</a> //Angular默認(rèn)會轉(zhuǎn)換為href
路由激活狀態(tài)樣式
ui-sref-active="active"
完整代碼
<html ng-app="myApp"> <head> <style> .active{ color: red } </style> <script src="angular.main.js"></script> <script src="angular-ui-router.js"></script> </head> <body> <div ui-view></div> <footer> <a ui-sref="home" ui-sref-active="active">首頁</a> <a ui-sref="about" ui-sref-active="active">關(guān)于</a> <a ui-sref="items">商品</a> </footer> </body> <script> var app = angular.module("myApp", [ui-router]); app.config(["$stateProvider","$urlRouterProvider",function($stateProvider){ $stateProvider.state("home",{ url: "/home" template: "首頁" }) .state("about",{ url: "/about" template: "關(guān)于我們" }).state("items",{//牛逼的潛逃路由 url: "/items", templateUrl: "./items.html", controller:["$scope",$state,function($scope,$state){ $scope.jump = function(){ $state.go("home"); } $scope.jumpOther = function() { $state.go("items.phone",{ id: "phone" }); } }] }).state("items.comp",{ url: "/comp", template: "<h2>電腦商品</h2>" }).state("item.phone",{ url:"phone/:id", template:"<h2>手機商品</h2>", controller:["$scope","$stateParams",function($scope,$stateParams){ console.log($stateParams); }] }); $urlRouterProvider.otherwise("home") } </script> </html>
嵌套路由頁面
<div> <h2>商品展示</h2> <button ng-click="jump()">點擊跳轉(zhuǎn)首頁</button> <a ui-sref="about">跳轉(zhuǎn)至關(guān)于我們</a> <button ng-click="jumpOther()">穿參數(shù)</button> <a ui-sref="items.other({id:"sref"})"></a> <ul> //因為我們外面父級路由是items所以自路由用items為前綴 <li><a ui-sref="items.comp">電腦</a></li> <li><a ui-sref="items.phone">手機</a></li> </ul> <div ui-view></div> </div>
總結(jié)
以上所述是小編給大家介紹的Angular路由ui-router配置詳解,希望對大家有所幫助,如果大家有任何疑問請給我留言,小編會及時回復(fù)大家的。在此也非常感謝大家對億速云網(wǎng)站的支持!
免責(zé)聲明:本站發(fā)布的內(nèi)容(圖片、視頻和文字)以原創(chuàng)、轉(zhuǎn)載和分享為主,文章觀點不代表本網(wǎng)站立場,如果涉及侵權(quán)請聯(lián)系站長郵箱:is@yisu.com進行舉報,并提供相關(guān)證據(jù),一經(jīng)查實,將立刻刪除涉嫌侵權(quán)內(nèi)容。