个人博客
专注IT梦想的地方

2018年10月的文章

JS如何区分对象和数组-智言个人博客
JavaScript

JS如何区分对象和数组

智言阅读(4594)评论(0)赞(156)

很多朋友首先想到的是用typeof来判断,其实typeof一般测试基本类型(Undefined、Null、Boolean、Number、String),对引用类型一律返回object(有一个特殊,Function引用类型返回Function...

create-react-app报The 'decorators' plugin requires a 'decoratorsBeforeExport' option, whose value must be a boolean. If you are migrating from Babylon/Babel 6 or want to use the old decorators proposal, you should use the 'decorators-legacy' plugin instead of 'decorators'的解决方法-智言个人博客
React

create-react-app报The ‘decorators’ plugin requires a ‘decoratorsBeforeExport’ option, whose value must be a boolean. If you are migrating from Babylon/Babel 6 or want to use the old decorators proposal, you should use the ‘decorators-legacy’ plugin instead of ‘decorators’的解决方法

智言阅读(6838)评论(0)赞(0)

首先阐述一下遇到的情况,今天在使用create-react-app创建好项目,然后通过react-app-rewired自定义配置create-react-app后,发现报了下面的错误,当然,我通过react-app-rewired配置了m...