angularjs state.go路由怎么配置

angularjs state.go路由怎么配置,第1张

通过引入UI-router来定义路由

$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重写一遍。写的时候


欢迎分享,转载请注明来源:内存溢出

原文地址: http://outofmemory.cn/tougao/12025934.html

(0)
打赏 微信扫一扫 微信扫一扫 支付宝扫一扫 支付宝扫一扫
上一篇 2023-05-20
下一篇 2023-05-20

发表评论

登录后才能评论

评论列表(0条)

保存