如何在浏览器控制台中隐藏 axios 验证错误?

时间:2021-07-12 15:53:30

标签: laravel axios

我有一个 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])
})

0 个答案:

没有答案