Objects are not valid as a React child (found: [object Promise]). If you meant to render a collection of children, use an array instead.
时间: 2024-05-31 22:10:47 浏览: 250
A collection of custom React hooks
这个错误通常发生在你试图在 React 中渲染一个 Promise 对象时,React 不知道如何将 Promise 对象转换成渲染内容。
解决这个问题的方法是将 Promise 对象转换成可渲染的内容。你可以使用 `async/await` 或 `.then()` 方法来获取 Promise 对象的结果,并将结果渲染到组件中。另外,你也可以在组件的 `state` 中存储 Promise 对象,然后在 Promise 对象被解析后再更新组件的状态并渲染结果。
阅读全文