所以我想传递一个对象(json)(例如:person实体)作为state.go()的参数,而不是通过url发送它。 我尝试使用这样的参数
.state('send-to',{
url:'/:id/options',
views:{
'content@':{
templateUrl:'page.jsp',
params: ['ref'],
controller:'optionCtrl'
}
}
})
在我的controller1中我用这个:
$state.go('home.referentiel.option',{id:$scope.selected,ref:p});
并在我的控制器'optionCtrl'我用这个:
$scope.selectedReferentiel = $stateParams.ref;
由于