问题描述
我在做 cnodejs 的收藏主题功能,用的 vue 框架。发送 post 请求时报出500错误。
相关代码
// 请把代码文本粘贴到下方(请勿用图片代替代码)
<Button type="success" class="collect" :class="{'cancel-col': info.is_collect}" @click="collect(info.id)">{{isCollect}}</Button>
//收藏或取消收藏
collect(id){
let accesstoken = Cookies.get('accesstoken');
if(this.info.is_collect){
//取消收藏
}else{
//收藏
axios.post('https://cnodejs.org/api/v1/topic_collect/collect', {
accesstoken,
id
}).then((res) => {
console.log(res.data);
}, (error) => {
console.log(error);
});
}
}
你期待的结果是什么?实际看到的错误信息又是什么?
POST https://cnodejs.org/api/v1/to... 500 (Internal Server Error)
如楼上讲的,我附个图。开发者模式选择Network,选择你们交互的这个文件,看Header里面的内容,拉到最后就是你的请求参数。和后台核对一下请求参数。
如果请求参数没问题,可能就是后台的BUG。