我正在使用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调用中使用。
答案 0 :(得分:2)
使用this
使用您的道具。
this.id
将解决您的问题。