zoukankan      html  css  js  c++  java
  • VUE中获取url中的值

    如图:获取值

    一:main.js中写入

    const router = new VueRouter({
    
        routes: [
            {
                path: '/goodsinfo/:goodsId',
                component: goodsinfo
            },
    
        ]
    })

    二:在当前文件中设置

    <template>
    <div>

    <router-link :to="'/goodsinfo/'+ subitem.artID" class=""> <div class="img-box"> <img v-lazy =subitem.img_url> </div> <div class="info"> <h3>{{subitem.artTitle}}</h3> <p class="price"> <b>{{subitem.sell_price}}</b>元</p> <p> <strong>库存 {{subitem.stock_quantity}}</strong> <span>市场价: <s>{{subitem.market_price}}</s> </span> </p> </div> </router-link>

    </div>
    </template>

    三:在跳转后的文件中获取url中的值

        // 获得商品评论数据
        getCommentByPage() {
          const url = `site/comment/getbypage/goods/${
            this.$route.params.goodsId
          }?pageIndex=${this.pageIndex}&pageSize=${this.pageSize}`;
          this.$axios.get(url).then(
            res => {
              this.comment = res.data;
            },
            err => {
              console.log(err);
            }
          );
        },

    是不是超级简单,超级激动呀

  • 相关阅读:
    LeetCode100——same tree
    Stl——Vector.erase()用法
    xor异或逻辑运算
    爬楼梯问题——迭代or递归
    简单博弈论取石子
    纪念我的leetcode开门之旅
    JiuDuOj——1049
    [Codeforces 872]比赛记录
    [BZOJ 4563]放棋子
    10.14
  • 原文地址:https://www.cnblogs.com/DZzzz/p/8933646.html
Copyright © 2011-2022 走看看