0

多くのネストされたビューを含む子を持つ抽象的な状態に状態を再構築しています。

oldState を保持する必要があります。私の目標は、oldState への参照を「app.newState.home」にリダイレクトすることです。

以下で使用している現在の実装 (redirectTo、Redirect a state to default substate with UI-Router in AngularJS を使用) は、異なる抽象状態の子状態にリダイレクトするという点で機能します。ただし、セグメント分析からこのエラーが発生します。

https://api-iam.intercom.io/ping/events 422 (Unprocessable Entity) [{"code":"422","message":"Cannot have more than 120 active event names"}]}

.state('app.oldState', {
  url: '/oldState',
  redirectTo: 'app.newState.home',
})

.state('app.newState', {
    url: '/oldState',
    // abstract: true,
    templateUrl: helper.basepath('anotherTemplate'),
    resolve: helper.resolveFor('datatables','easypiechart','ngDialog','angularFileUpload', 'filestyle', 'taginput'),
})


.state('app.newState.home', {
  url: '',
  views: {
    'firstView':{
      templateUrl: helper.basepath('templateOne'),
      controller: 'ControllerOne'
    },
    'secondView':{
      templateUrl: helper.basepath('templateTwo'),
      controller: 'ControllerOne'
    },
    'thirdView':{
      templateUrl: helper.basepath('templateThree'),
      controller: 'ControllerOne'
    },
    'fourthView':{
      templateUrl: helper.basepath('templateFour'),
      controller: 'ControllerTwo'
    },
  }
})

このエラーがスローされる理由と、この問題を適切に解決するにはどうすればよいですか???

4

1 に答える 1