gpt4 book ai didi

javascript - 在 Angular UI Router 中发送多个参数而不指定 url?

转载 作者:行者123 更新时间:2023-12-03 09:27:29 25 4
gpt4 key购买 nike

我有一个具有两种状态的应用程序。 State1没有模态对话框,State2有自定义模态框。如果我在 State2 模式窗口打开时单击浏览器后退按钮,它将返回到之前的状态 State1。我不想要这个(因为如果您多次打开和关闭模式,浏览器将返回所有这些)。删除 UI 路由器中的 URL 可以解决这个问题,但我还有另一个问题。

我需要向各州发送多个参数,但显然它只允许我发送一个。我有以下状态。

.state('state2',{
params: {id: NaN, type: "empty"},
views:{
'modalContent':{
templateUrl: 'templates/modal-content-super-region.html',
controller: 'ModalStatesCtrl'
}
}
})

以及以下指令:

<a ui-sref="state2({id: 1, type: 'someStringHere'})">The link</a>

当我控制台日志 $stateParams 时,我得到以下信息:

{ id: 1, type: "空"}

因此指令正确地传入了 id,但根本没有设置类型,传入的类型仍保留为默认值。有什么我可以做的吗?如果没有 URL(我绝对不能有),我可以只传递一个状态参数吗?

最佳答案

a working plunker 。我不得不说,看来你的例子,你的解释正在按原样发挥作用。也许只是代码中的一些拼写错误...

因此,state2 和 state1 未更改(使用 url 来查看一些生成的 href)

// just to have state with standard <a> generated - url is needed
.state('state1', {
// url is supporting href being generated
url: "/state1",
params: {
id: NaN,
type: "empty"
},
views: {
'modalContent': {
templateUrl: 'templates/modal-content-super-region.html',
controller: 'ModalStatesCtrl'
}
}
})
// unchanged state def
.state('state2', {
params: {
id: NaN,
type: "empty"
},
views: {
'modalContent': {
templateUrl: 'templates/modal-content-super-region.html',
controller: 'ModalStatesCtrl'
}
}
});

这是它们被调用和传递参数的方式:

<a ui-sref="state1({id: 1, type: 'someStringHere'})">
<a ui-sref="state2({id: 22, type: 'someOtherHere'})">

检查一下here

关于javascript - 在 Angular UI Router 中发送多个参数而不指定 url?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/31620355/

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