angular4.x 界面跳转

2019-01-25  本文已影响19人  追逐繁星的阿忠

直接跳转 分是否携带参数——对应的roter也需要对应

<a href="javascript:void(0)" routerLink="/tool/beautiful" class="wn-btn red-border-btn"
                   style="margin-right: 10px">历史记录</a>

 <a href="javascript:void(0)" [routerLink]="['/tool/beautiful/edit', 0]" class="wn-btn red-border-btn"
                   style="margin-right: 10px">添加护理</a>

routerLink本身支持两种写法:
<a routerLink="detail">
</a>

<a [routerLink]="['detail']">
</a>
复制代码routerLink的值有哪些写法,又有什么区别呢?
假设当前路由为
http://localhost:4200/#/doc/license
复制代码

写法1 : 绝对路径 / + 路由名字


<a [routerLink]="['/doc/demo']" >跳呀跳</a>


<a [routerLink]="['/demo']" >跳呀跳</a>
复制代码那么url是
http://localhost:4200/#/doc/demo上跳转,即 http://localhost:4200/#/ + 你要跳转的绝对路径。

写法2 : 一个路由名字 路由名字

<a [routerLink]="['demo']" >跳呀跳</a>
复制代码那么url是http://localhost:4200/#/doc/license/(demo),即http://localhost:4200/#/doc/license + 你要跳转的绝对路径,这时候它会给你的路由加些东西变成 /(demo),跳转不了。

写法3 :相对路径 ../路由名字

<a [routerLink]="['../demo']" >跳呀跳</a>
复制代码那么url是
http://localhost:4200/#/doc/demo,即 http://localhost:4200/#/doc + 你要跳转的相对路径。它会从上一级开始寻找。

写法4 : ./路由名字, 即现在的路由+你写的要跳去的路由

<a [routerLink]="['./demo']" >跳呀跳</a>
复制代码那么url是
http://localhost:4200/#/doc/license/demo上,即 http://localhost:4200/#/doc/license + 你要跳转的相对路径。它会从当前路由的下一级开始寻找此匹配的路由进行跳转。

作者:莫莫莫
链接:https://juejin.im/post/5ae29738f265da0ba351c572
来源:掘金
著作权归作者所有。商业转载请联系作者获得授权,非商业转载请注明出处。

上一篇下一篇

猜你喜欢

热点阅读