我一直在尝试使用jquery做出有效的反应,到目前为止,通过在从jquery' 编写 import $,它一直很好用。顶部的相应组件。
但是,现在我需要jquery-ui。为了实现这一点,我运行了 npm install jquery-ui ,果然我的node_modules中有一个jquery-ui文件。但是,如果我尝试运行一些jquery-ui方法,如:
$('.SomeClass').toggle('slide', { direction: 'right' });
我得到大约70个错误,最后一个错误是jQuery.easing[this.easing] is not a function
。谁能帮助我让jquery-ui正常运行?!万分感谢。
我还尝试将导入更改为从jquery-ui' 导入$。然后,如果我尝试使用 $(event.currentTarget),我只会得到错误Cannot read property 'version' of undefined
,或者name.split is not a function
。希望更新后的导入是朝着正确方向迈出的一步,但请注意它可能是一个红色的鲱鱼。
注意:我在安装jquery-ui时得到了npm WARN react@0.8.0 requires a peer of envify@~0.2.0 but none was installed
,但我不认为这与我的错误有关。