dva引用babel-polyfill在IE11中报错:
Objects are not valid as a React child (found: object with keys {$$typeof, type, key, ref, props, _owner, _store}). If you meant to render a collection of children, use an array instead or wrap the object using createFragment(object) from the React add-ons. Check the render method of StatelessComponent
.
在index.js因使用了Object.assign()和Promise,需要 import 'babel-polyfill'; 然后在IE11中打开localhost:8000,报出以上错误
这个问题 是怎么解决的