如何使用 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';
}
但它不起作用。有任何想法吗?