在 codesandbox.io 中使用 react-thunk 处理异步 http 调用时抛出跨源错误
A cross-origin error was thrown while working on asynchronous http calls using react-thunk in codesandbox.io
我正在使用 react-thunk 练习 API 调用。但我收到以下错误。
proxyConsole.js:64 Error: A cross-origin error was thrown. React
doesn't have access to the actual error object in development.
出于练习目的,我参考了以下内容linkReact-redux-tutorial
codesandbox.io中的代码我已经练习过了。代码将在 codesandbox link
中可用
沙盒控制台并不总是为您提供完整的错误。
但是,如果您打开实际的浏览器控制台,您会看到完整的错误。
错误是Provider没有从react-redux正确导入
import Provider from "react-redux";
需要写成import { Provider } from "react-redux";
才能固定
我正在使用 react-thunk 练习 API 调用。但我收到以下错误。
proxyConsole.js:64 Error: A cross-origin error was thrown. React doesn't have access to the actual error object in development.
出于练习目的,我参考了以下内容linkReact-redux-tutorial
codesandbox.io中的代码我已经练习过了。代码将在 codesandbox link
中可用沙盒控制台并不总是为您提供完整的错误。
但是,如果您打开实际的浏览器控制台,您会看到完整的错误。
错误是Provider没有从react-redux正确导入
import Provider from "react-redux";
需要写成import { Provider } from "react-redux";
才能固定