gpt4 book ai didi

javascript - BreezeJS 中央错误处理程序和自动重试

转载 作者:行者123 更新时间:2023-11-28 00:31:42 25 4
gpt4 key购买 nike

有没有办法让 Breeze JS 在通信失败的情况下自动重试?理想情况下,我想添加一个基于响应的中央事件处理程序,例如 401 我可以提示用户重新登录,然后重试请求,或者如果其一般连接问题为用户提供重试或取消的选项?

我可以在每个请求位置添加代码来处理这个问题,但这将是大量工作,理想情况下这需要位于一个中心位置。

最佳答案

您可以将重试逻辑放在 request interceptor

来自 Breeze 文档:

Stock Breeze AJAX adapters offer an extension point, the requestInterceptor. This interceptor gives the developer one last look at each request before the adapter calls the actual AJAX component.
The interceptor takes a single parameter, the requestInfo, and returns nothing.

var requestInfo = {
adapter: this, // this AJAX adapter
config: ..., // the configuration object passed to the wrapped AJAX component
dsaConfig: config, // the config arg from the calling Breeze DataServiceAdapter
success: successFn, // adapter's success callback
error: errorFn // adapter's error callback
}

您的请求拦截器可以包装 error 回调并添加重试逻辑和 401 处理。

如果您将 Breeze 与 jQuery 结合使用,您可以使用 jQuery 的 ajax prefilter 在较低级别执行此操作。 .

关于javascript - BreezeJS 中央错误处理程序和自动重试,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/28920506/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com