我有一个 Laravel 应用
使用 axios,我保存并验证数据库中的数据,并使用 sweetalert 显示错误。 但是在浏览器控制台也显示如下错误。
POST http://localhost:8000/admin/price 422 (Unprocessable Entity)
如何从控制台中删除此错误。
我不想使用 console.clear();
axios({
url: "{{route('price.store')}}",
method: "post",
data: new FormData(this),
}).then(function (response) {
getData()
}).catch(error => {
alert(error.response.data.errors.p[0])
})