gpt4 book ai didi

angular - 使用 POST/PUT/PATCH 请求将负载数据发送到 Sentry.io

转载 作者:行者123 更新时间:2023-12-05 01:40:13 26 4
gpt4 key购买 nike

我正在尝试将负载数据添加到发送到 Sentry.io 的面包屑中。

看起来像这样。

enter image description here

我找到了如何添加响应。

const sentryConfig: BrowserOptions = {
beforeBreadcrumb: (breadcrumb, hint) => {
if (breadcrumb.category === 'xhr') {
// hint.xhr is a whole XHR object that you can use to modify breadcrumb
breadcrumb.data = (hint.xhr as XMLHttpRequest).response;
}

return breadcrumb;
}
};

但我似乎找不到添加负载的方法。 XMLHttpRequest 没有这个信息。

最佳答案

可以通过这种方式从您的 xhr 获取正文(有效负载数据):

beforeBreadcrumb: (breadcrumb, hint) => {
if (breadcrumb.category === 'xhr') {
const data = {
requestBody: hint.xhr.__sentry_xhr__.body,
response: hint.xhr.response,
responseUrl: hint.xhr.responseURL
}
return { ...breadcrumb, data }
}
return breadcrumb
}

这是 PR添加的位置。

关于angular - 使用 POST/PUT/PATCH 请求将负载数据发送到 Sentry.io,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/56883255/

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