TypeError: dispatch(...).then is not a function
时间: 2023-09-24 07:07:56 浏览: 168
Vue 报错TypeError: this.$set is not a function 的解决方法
5星 · 资源好评率100%
这个错误通常发生在尝试在一个不返回 Promise 的函数上使用 `.then()` 方法时。请确保您的函数返回一个 Promise。另外,请确保您正在使用 Promise 对象正确,因为在 JavaScript 中,许多函数可以返回类似 Promise 的对象,但并不是真正的 Promise 对象,因此它们可能不具有 `.then()` 方法。如果您能提供更多上下文或代码,我可以帮助您更好地解决这个问题。
阅读全文