老生常谈angularjs中的$state.go

前端之家收集整理的这篇文章主要介绍了老生常谈angularjs中的$state.go前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。

路由是这么定义的:

用ng-href跳转的话,是这么写的:

ng-href="#/page1" rel="external nofollow"

ng-href="#/page2/1" rel="external nofollow"

用$state.go跳转的话,是这么写的:

$state.go("page1"); $state.go("page2",{type:1});

用ui-sref跳转的话,是这么写的:

ui-sref="page1"

ui-sref="page2({type:1})"

可以对照一下

以上这篇老生常谈angularjs中的$state.go就是小编分享给大家的全部内容了,希望能给大家一个参考,也希望大家多多支持编程之家。

原文链接:https://www.f2er.com/js/39770.html

猜你在找的JavaScript相关文章