以下是我的控制器中的一项功能
$scope.getUrl = function() {
$state.href('newState',
{randomId: $scope.randomId, anotherOne: $scope.anotherOne}
);
};
上面的函数正在模板中调用(当然不能正常工作):
<div ng-href="{{getUrl()}}">
有没有办法将$ scope变量从我的控制器传递到$ state.href?
感谢任何反馈
答案 0 :(得分:0)
从getUrl()
$scope.getUrl = function() {
return $state.href('newState',
{randomId: $scope.randomId, anotherOne: $scope.anotherOne}
);
};