Angular路由ui-router配置详解
简介
angularJs自身提供路由ng-router,但是ng-router不是很好用,配置项零散,好比Vue提供的组件传值一样,虽然提供给你了用法,但是开发过程中逻辑一多用着萌萌的,所以我们抛开ng-router来看ui-router。
引入ui-router
我们可以去bootCDN搜索ui-router,本地创建js文件,将代码copy进去使用,这样就可以打入本地使用了,但是要注意的是,Angular的main.js一定要在ui-router之前引用,注意一下先后顺序问题。
例如:
配置ui-router
//angular.module("moduleName",dep);定义模块依赖(两个参数)
//angular.module("moduleName");获取模块(一个参数)
varapp=angular.module("myApp",["ui-router"]);
app.config(["$stateProvider","$urlRouterProvider",function($stateProvider){
//app.config配置项
//$stateProvider状态供应商,(名字可以看出关于路由的一系列配置需要由$stateProvider完成)
//$urlRouterProvider路由重定向
$stateProvider.state("home",{
url:"/home"
template:"首页
"
}).state("about",{
url:"/about"
template:"关于我们"
});
$urlRouterProvider.otherwise("home")
}])
页面配置
路由激活状态样式
ui-sref-active="active"
完整代码