vue js 组件中的 this.$route 只返回 undefined
Posted
技术标签:
【中文标题】vue js 组件中的 this.$route 只返回 undefined【英文标题】:this.$route in vue js component just returns undefined 【发布时间】:2017-10-13 13:05:12 【问题描述】:我正在尝试将参数从 url 获取到 vue 组件中的方法中。
我读到我打算使用 this.$route 但无论我做什么它都会返回未定义,我已经看到了一些不同的类似问题,但他们的修复对我没有用。
<template>
this.$route.query
</template>
<script>
export default
name: 'cards',
data: () => (
items: [
id: 1,
title: '8 myths about mobile interfaces',
link: 'https://medium.muz.li/8-myths-about-mobile-interfaces-390d9e2cee33',
folder: 'medium',
order: 1,
,
id: 2,
title: 'Asking your user’s gender, the new skeuomorphism, upside-down UIs and more',
link: 'https://uxdesign.cc/asking-your-users-gender-the-new-skeuomorphism-upside-down-uis-and-more-e108ef888030',
folder: 'medium',
order: 2,
,
],
),
methods:
link: () =>
console.log(this.$routes.query);
,
,
;
</script>
我在模板中使用了 this.$route,它可以正常工作并显示出来。
我不确定我需要做什么才能让它显示参数。
我是 vue 新手,所以可能整个过程都做错了,但基本上应用程序会读取链接并且只显示文件夹内容,所以如果它的 url 是 /cards?folder=medium 它只会显示数据文件夹数据。因此,如果您知道更好的方法,请告诉我!
否则你能看出它为什么不显示路线吗?
如果有帮助,这是我的路由器 vue 文件:
import Vue from 'vue';
import VueRouter from 'vue-router';
import cards from './cards/cards';
Vue.use(VueRouter);
export default new VueRouter(
routes: [
path: '/cards',
name: 'cards',
component: cards,
,
],
mode: 'history',
);
【问题讨论】:
VueJS: why is "this" undefined?的可能重复 【参考方案1】:为了访问this
,您不应使用箭头函数。改用常规函数:
methods:
links: function()
console.log(this.$route) // should work
这在 Vue 文档中有说明,例如这里 https://vuejs.org/v2/api/#data 底部注释。
【讨论】:
【参考方案2】:您可以使用object definition method shorthand(实现与Egor Stambakio's answer 相同的结果,但字符更少,耶!)。
methods:
links()
console.log(this.$route) // should also work
【讨论】:
以上是关于vue js 组件中的 this.$route 只返回 undefined的主要内容,如果未能解决你的问题,请参考以下文章
vue项目中动态加载路由组件this.$route undefined
Vue---this.$route和this.$router这两个对象
预渲染 vue.js 2.0 组件(类似于 vue 1 中的 this.$compile)