zoukankan      html  css  js  c++  java
  • vue中的this.$ 都有什么

    <router-link :to="{name:'home'}">
    <router-link :to="{path:'/home'}">

    <router-link :to="{name:'home', params: {id:1}}">

    // params传参数 (类似post)
    // 路由配置 path: "/home/:id" 或者 path: "/home:id"
    // 不配置path ,第一次可请求,刷新页面id会消失
    // 配置path,刷新页面id会保留

    // html 取参 $route.params.id
    // script 取参 this.$route.params.id

    <router-link :to="{name:'home', query: {id:1}}">

    // query传参数 (类似get,url后面会显示参数)
    // 路由可不配置

    // html 取参 $route.query.id
    // script 取参 this.$route.query.id

    1、this.$router.push()   路由跳转

    this.$router.back()

    this.$router.go()

    this.$router.push({name:'home',query: {id:'1'}})
    this.$router.push({path:'/home',query: {id:'1'}})

    // html 取参 $route.query.id
    // script 取参 this.$route.query.id

    this.$router.push({name:'home',params: {id:'1'}}) // 只能用 name

    // 路由配置 path: "/home/:id" 或者 path: "/home:id" ,
    // 不配置path ,第一次可请求,刷新页面id会消失
    // 配置path,刷新页面id会保留

    // html 取参 $route.params.id
    // script 取参 this.$route.params.id

    3.  this.$router.replace() (用法同上,push)

  • 相关阅读:
    贪心算法1000
    贪心算法1006
    1012
    贪心算法1016
    贪心算法1001
    贪心算法1004
    Java作业1
    指针数组与数组指针的区别
    Java 中对类进行排序的方法(转)
    java习题1
  • 原文地址:https://www.cnblogs.com/bigbang66/p/14517956.html
Copyright © 2011-2022 走看看