在这种情况下,我正在学习使用laravel 5.6版,通过使用axios实现代码以更新网页上的表格,我得到以下消息enter image description here,我遇到问题的代码是下一个
actualizarCategoria(){
if (this.validarCategoria()){
return;
}
let me = this;
axios.put('/categoria/actualizar',{
'nombre': this.nombre,
'descripcion': this.descripcion,
'id': this.categoria_id
}).then(function (response) {
me.cerrarModal();
me.listarCategoria();
}).catch(function (error) {
console.log(error);
});
}
答案 0 :(得分:0)
我会说错误500 =服务器出错。因此,您的请求可能格式错误,或者是您的API中的错误(laravel方面)。检查您的PHP日志,您应该会看到错误,并查看chrome中的网络标签以查看服务器的响应