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

前端之家收集整理的这篇文章主要介绍了AngularJS使用ui-router通过ng-click更改路由前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
如何使用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。

最好的解决方案是使用$ state.go()。例如$ state.go(‘recorder.options’)

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

原文链接:https://www.f2er.com/angularjs/144557.html

猜你在找的Angularjs相关文章