我不知道为什么ng-href
不起作用。
我想做的是从 amodal
到 a view
,传递参数{{user}}
和{{email}}
这是状态
//gestion
.state('gestion',
{
url:'/compte/gestion/:user/:email',
templateUrl:'templates/gestion.html',
controller:'loginCtrl'
})
来自控制器的代码
$scope.goToState = function () {
$state.go('gestion', {user:'$scope.user', email: '$scope.email'});}
$scope.user 和 $scope.email 是我从外部 url 检索的两个值
这是view
与ng-href
<ion-item ng-click="goToState()" style="width:340px;margin-top:10px" >
Gerer mon compte
</ion-item>
谢谢你的帮助