wuwen5 opened a new issue #7765: URL: https://github.com/apache/skywalking/issues/7765
### Search before asking - [X] I had searched in the [issues](https://github.com/apache/skywalking/issues?q=is%3Aissue) and found no similar issues. ### Apache SkyWalking Component NodeJS Client Side Agent (apache/skywalking-client-js) ### What happened ```js let innerOnConnectFinished = function () { fetchThen(fetch('/cim-server/cim/message/token'), (data) => bind(data)) }; ```   fetch.ts ```diff try { response = await originFetch(...args); return response .clone() - .json() - .then((body: any) => body) - .catch((err: any) => err); + .clone(); } ``` I don't know why we need these three lines, but if I delete it, everything will be fine ### What you expected to happen ```js fetch(url).then(response => response.json()) ``` ### How to reproduce ```js fetch(url).then(response => response.json()) ``` ### Anything else _No response_ ### Are you willing to submit PR? - [X] Yes I am willing to submit a PR! ### Code of Conduct - [X] I agree to follow this project's [Code of Conduct](https://www.apache.org/foundation/policies/conduct) -- This is an automated message from the Apache Git Service. To respond to the message, please log on to GitHub and use the URL above to go to the specific comment. To unsubscribe, e-mail: [email protected] For queries about this service, please contact Infrastructure at: [email protected]
