如何使用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'; }
但它不行。有任何想法吗?
查看ui-router文档wiki。
原文链接:https://www.f2er.com/angularjs/144557.html最好的解决方案是使用$ state.go()。例如$ state.go(‘recorder.options’)
以下是文档中特定功能的链接:
https://github.com/angular-ui/ui-router/wiki/Quick-Reference#stategoto–toparams–options