gpt4 book ai didi

angularjs-routing - AngularJS : How to use $state. 在嵌套状态路由中传递查询字符串

转载 作者:行者123 更新时间:2023-12-04 01:54:07 24 4
gpt4 key购买 nike

我如何使用 $state.go将查询字符串传递到嵌套状态路由?

代码:

 .state('masterform', {
url: "/masterform?action&assetId&contentTypeId&folderid",
views: {
content: {
templateUrl: 'components/masterform/masterform.html',
controller: 'masterformCtrl as masterform'
}
}
})
.state('masterform.access', {
url: "/access",
views: {
content: {
templateUrl: 'components/masterform/access/access.html',
controller: 'accessCtrl as access'
}
}
})

谢谢。

最佳答案

您可以简单地使用 $state.go() 的第二个选项传递查询字符串参数。 .
像:

$state.go('masterform', {action:'Get', assetId:1234, folderId:999});

关于angularjs-routing - AngularJS : How to use $state. 在嵌套状态路由中传递查询字符串,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/28966792/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com