$stateProvider
.state('aView', {
url: "/a",
templateUrl: "a.html",
controller: "aController"
})
.state('bView', {
url: "/b/:code",
templateUrl: "b.html",
controller: "bController"
})
.state('cView', {
url: "/c",
templateUrl: "c.html",
controller: "cController"
})
$urlRouterProvider.otherwise("/a")
使用$state.go的时候,如下:没有参数的$state.go('aView',{})
有参数的 $state.go('bView',{code:"abc"})
实在是不能对jquery的ajax方法和基于页面dom的各种取值、传值方法满意(虽然jquery已经解救过我一次了),刚好手上这个项目用jquery的方法写了一半,决定试试很久以前自学的angularJS,把现在项目中jquery得部分用angularJS重写一遍。写的时候欢迎分享,转载请注明来源:内存溢出
评论列表(0条)