如何利用属于Nova Vue组件的自定义错误处理?
目标:我们有来自API的各种状态错误代码,范围从400> 503,我们希望将其引入Nova。
我想扩展以下方法,以增加对自定义错误代码的支持。下面的代码块来自updateResource来自vendor / laravel / nova / resources / js / views / Update.vue
if (error.response.status == 409) {
this.$toasted.show(
this.__(
'Another user has updated this resource since this page was loaded. Please refresh the page and try again.'
),
{ type: 'error' }
)
}
我找不到任何有关如何正确覆盖/扩展此文件以实施新error.response.status == 503
的相关信息