在 Angular UI 路由器中发送多个参数而不指定 url?

Sending multiple params in the Angular UI Router without specifying a url?

我有一个有两个状态的应用程序。 State1没有模态对话框,State2有自定义模态框。如果我在 State2 模态 window 启动时单击浏览器后退按钮,它将带我回到之前的状态 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: "empty"}

所以指令正确地传入了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