如何使用ng-click而不是应用ui-sref的链接来更改route.state。
我试过这个:
<button ng-click="selectDir(file.fullPath)">set</button>
与
$scope.selectDir = function(location) {
options.storageLocation = location;
$route.current = 'recorder.options';
}
但它不起作用。有什么想法吗?
答案 0 :(得分:37)
查看ui-router文档wiki。
最佳解决方案是使用$state.go()
。例如,$state.go('recorder.options')
以下是文档中特定功能的链接: https://github.com/angular-ui/ui-router/wiki/Quick-Reference#stategoto--toparams--options