0
controllerA甲如何使用參數而不顯示在URL中?從狀態
$state.go('account.accountRegister', {accountType: $stateParams.accountType, acName: acName})
狀態app.js定義從狀態B
.state('account.accountRegister', {
url: '/:accountType/register',
params: {accountType, acName},
views: {
'[email protected]':{
templateUrl: 'app/views/registration.html',
controller: 'registrationController'
}
}
})
controllerB
console.log($stateParams.acName); // is getting undefined
如何噸使用acName
他控制器沒有顯示在狀態的url部分?
嘗試givinng默認值狀態PARAMS。 'params:{accountType:null,acName:null}' –
如果我提到'null'我放棄它的價值。 –