gpt4 book ai didi

android - 博览会+ native react : There was a problem sending log messages

转载 作者:塔克拉玛干 更新时间:2023-11-02 19:15:16 25 4
gpt4 key购买 nike

我正在构建一个最近搬到 expo 的 react native 应用程序。该应用程序似乎显示了预期的屏幕,但在它完成之前,我收到以下错误消息:console.error:“向您的开发环境发送日志消息时出现问题,{“name”:“Error”}”。当我查看 expo 浏览器屏幕时,我在单击设备时看到以下堆栈跟踪:

  node_modules/expo/build/logs/LogSerialization.js:146:14 in _captureConsoleStackTrace
node_modules/expo/build/logs/LogSerialization.js:41:24 in Object.serializeLogDataAsync$
node_modules/regenerator-runtime/runtime.js:62:39 in tryCatch
node_modules/regenerator-runtime/runtime.js:288:21 in Generator.invoke [as _invoke]
node_modules/regenerator-runtime/runtime.js:114:20 in Generator.prototype.(anonymous
node_modules/regenerator-runtime/runtime.js:62:39 in tryCatch
node_modules/regenerator-runtime/runtime.js:152:19 in invoke
node_modules/regenerator-runtime/runtime.js:187:10 in <unknown>
node_modules/promise/setimmediate/core.js:45:4 in tryCallTwo
node_modules/promise/setimmediate/core.js:200:12 in doResolve

错误截图如下:

enter image description here

这个错误是什么意思?我发现一些文档提到删除 console.log 语句并删除了我拥有的那些但没有帮助。

最佳答案

这是因为 React native 控制台记录器无法解析来自 Axios 的 JSON 对象。我可以保证遇到此错误的任何人都不会在将 JSON 对象记录到控制台之前对其进行解析。

会产生此错误的代码:

Axios.post(URL).then(function (response)
{
console.log("POST RESPONSE: "+response);
}

修复此错误的代码:

Axios.post(URL).then(function (response)
{
console.log("POST RESPONSE: "+JSON.stringify(response));
}

关于android - 博览会+ native react : There was a problem sending log messages,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/54510060/

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