vue.js,vue-router和参数/道具

时间:2018-06-11 10:02:35

标签: javascript vue.js vuejs2

我正在使用vue-router运行Vue.js,并且正在尝试将参数传递给我的模板。

这是我的路线:

{ path: '/car/:id', component: car, props: true },

这是我的模板Car.vue

<template>
    <h2>{{ id }}</h2>
</template>

<script>
    export default {
        props: ['id']
    },
    methods: {
        getCar: function () {
        axios.get('http://my-api/car/' + id)
            .then((response) => {
                this.car = response.data
            })
            .catch((error) => {
                console.log(error)
            })
    }
</script>

我收到了错误:

  ✘  http://eslint.org/docs/rules/no-undef  'id' is not defined

但是id显示在h2中,但未在api调用中使用。

1 个答案:

答案 0 :(得分:2)

使用this使用您的道具。 this.id将解决您的问题。