美文网首页
angular4.x 界面跳转

angular4.x 界面跳转

作者: 追逐繁星的阿忠 | 来源:发表于2019-01-25 10: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
    来源:掘金
    著作权归作者所有。商业转载请联系作者获得授权,非商业转载请注明出处。

    相关文章

      网友评论

          本文标题:angular4.x 界面跳转

          本文链接:https://www.haomeiwen.com/subject/mdfmjqtx.html