这个是我请求的代码:
getapp() {
this.axios
.selectTeacherById({
params: {
id: this.teacher_id,
},
})
.then((res) => {
this.Information = res.data.data;
console.log(res.data.data)
})
.catch((err) => {});
},
这个是接口地址:
selectTeacherById(data){
return axios.post("/admin/user/selectByKey",data)
},
然后它总是会报如下错误
这到底是什么原因引起的?一直看不出来。
看看是不是提示
bad request
?检查下接口是不是需要
get
请求?