Home >Backend Development >PHP Tutorial >在angularjs中如何使用$stateProvider的路由进行传参数

在angularjs中如何使用$stateProvider的路由进行传参数

WBOY
WBOYOriginal
2016-06-06 20:30:482065browse

在做一个编辑的功能,点击编辑按钮如何跳转到编辑页面并进行传参数,跳转的url地址形式应该怎样写。还有如何使编辑与发布共同使用一个页面,这时候路由应该怎么写

回复内容:

在做一个编辑的功能,点击编辑按钮如何跳转到编辑页面并进行传参数,跳转的url地址形式应该怎样写。还有如何使编辑与发布共同使用一个页面,这时候路由应该怎么写

看了这个你应该就懂了。
学习 ui-router - 路由控制

不懂你啥意思,直接写就是这样 url: "/a/b/:id"
或者
在目标页面规定接受的参数:$stateProvider.state('page2', {params: {'data': null}})
传参:$state.go('page2', {data: 'aaa'});

再或者
目标页面接受参数:控制器注入$stateParams之后可以通过$stateParams.data来获取‘aaa’

Statement:
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn