博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
Reactjs 15.4.X IE11 Objects are not valid as a React child
阅读量:5974 次
发布时间:2019-06-19

本文共 852 字,大约阅读时间需要 2 分钟。

hot3.png

Reactjs 15.4.X 在IE下出现如下异常:

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 `CoreLayout`.

解决办法: 将 babel-polyfill 在import react 和reactDom之前引入即可。

  • babel-polyfill
  • react
  • react-dom
  • webpack 参考如下配置: 输入图片说明
entry: [   'babel-polyfill', // Load this first   'react-hot-loader/patch', // This package already requires/loads react (but not react-dom). It must be loaded after babel-polyfill to ensure both react and react-dom use the same Symbol.   'react', // Include this to enforce order   'react-dom', // Include this to enforce order   './index.js' // Path to your app's entry file]

转载于:https://my.oschina.net/xuqiang/blog/1490255

你可能感兴趣的文章
解读 JavaScript 之引擎、运行时和堆栈调用
查看>>
不得不懂系列(1)-Go语言protobuf快速上手
查看>>
版本控制系统git
查看>>
从月薪5k到5w的过来人 给大学生程序员们的一点建议
查看>>
Android开发之 .9PNG 的使用
查看>>
D2 日报 2019年5月8日
查看>>
武汉区块链软件技术公司:区块链和比特币
查看>>
学习笔记(3.27)
查看>>
ecshop ajax无刷新登陆_无需整理
查看>>
Android中隐藏标题栏和状态栏
查看>>
浅显c#连接数据库
查看>>
15. SQL -- 游标(实例)
查看>>
plsql9.0.6.1665版本注册码
查看>>
Linux入门基础之grep命令详解及正则表达式
查看>>
Git 分布式版本控制 实战
查看>>
Linux之Find命令详解
查看>>
crysis2 video&cryengine3 editor show
查看>>
数据挖掘 numpy之数组定义
查看>>
Hibernate学习之SessionFactory的opensession 和 getCu...
查看>>
web网站服务(二)
查看>>