AngularJS使用ui-router通过ng-click更改路由

时间:2013-10-14 13:42:56

标签: angularjs angular-ui angular-ui-router

如何使用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';
}

但它不起作用。有什么想法吗?

1 个答案:

答案 0 :(得分:37)

查看ui-router文档wiki。

最佳解决方案是使用$state.go()。例如,$state.go('recorder.options')

以下是文档中特定功能的链接: https://github.com/angular-ui/ui-router/wiki/Quick-Reference#stategoto--toparams--options