在react.js中导入压缩的javascript文件

时间:2019-02-28 18:15:08

标签: javascript reactjs es6-modules

我有一个JavaScript文件fun setHintColor(@ColorInt color: Int) { try { var stateList = ColorStateList(arrayOf(intArrayOf(0)), intArrayOf(color)) val defaultTextColorField = TextInputLayout::class.java.getDeclaredField("mDefaultTextColor") defaultTextColorField?.let {field-> field.isAccessible = true field.set(this, stateList) } val focusedTextColorField = TextInputLayout::class.java.getDeclaredField("mFocusedTextColor") focusedTextColorField?.let{field-> field.isAccessible = true field.set(this, stateList) } }catch(e: java.lang.Exception){ // handle exception } } ,我正在尝试将其导入我的react.js应用(CRA) 我得到这些错误

enter image description here

这是文件compressed.js

enter image description here

试图弄清楚我需要做些什么。

谢谢

0 个答案:

没有答案