uncaught (in promise) undefined
时间: 2023-04-30 20:02:21 浏览: 106
Promise 未定义 引用脚本
"uncaught (in promise) undefined" 意味着在 JavaScript 中运行的一个 promise 没有被正确地处理。这通常是因为在 promise 中抛出了一个错误或异常,但没有使用 .catch() 或 .then() 方法来处理它。应该在 promise 中添加错误处理逻辑来避免这个问题。
阅读全文