vue.js路由匹配问题

发布于 2022-09-06 21:16:45 字数 940 浏览 30 评论 0

post传参的时候categorys 为啥不能识别呢?
图片描述
代码贴在下面:

<script>
export default {
  name: "app",
  components: {},
  data() {
    return {
      banner: require("@/assets/hottopic/banner.png"),
      data: [],
      filter: {
        page: {
          pageSize: 5,
          pageNumber: 1,
          totalSize: 100
        },
        categorys: ["小微企业专题"]
      }
    };
  },
  computed: {},
  methods: {
    getData() {
      this.filter.categorys = ["this.$route.params.id"]
      this.$API.post("/articlelist/query", this.filter).then(res => {
        console.log(res);
        this.data = res.list;
      });
    }
  },
  created() {
    if(this.$route.params.id){
      this.getData();
    }
  },
  mounted() {},
  watch:{
    "$route":"getData"
  }
};
</script>

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(3

勿挽旧人 2022-09-13 21:16:46

传入的数据带双引号,被认为是字符串

鸢与 2022-09-13 21:16:46

把引号去掉:

this.filter.categorys = [this.$route.params.id];
活泼老夫 2022-09-13 21:16:45
this.filter.categorys= [`${this.$route.params.id}`]
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文