我正在Vue.js&Laravel项目中工作。在这里,我像这样的main.js
在axios.defaults.baseURL = 'http://127.0.0.1:8000/api';
文件中配置axios。
我在如下所示的一种组件方法中使用axios。
methods: {
get_words () {
console.log(this.word_id);
axios.get('/words/'+ this.word_id)
.then(response => {
this.words = response.data;
})
.catch();
},
},
我在控制台中出现URL下方错误。
http://127.0.0.1:8000/api/words/%E0%A6%86%E0%A6%B2-%E0%A6%86'%E0%A6%B0%E0%A6%BE%E0%A6%AB
答案 0 :(得分:0)
v-show
这将为您工作。 请注意,它不是单引号。是反引号(``)