我尝试使用Jquery-Ui可排序。我是这样做的:
import React from 'react';
import $ from 'jquery';
import sortable from 'jquery-ui/ui/widgets/sortable';
class test extends React.Component {
componentDidMount() {
$('.element').sortable();
}
render() {...}
}
那很好,但是我有一个问题: 我得到警告: 带有警告编译。 已定义“可排序”但从未使用
如果我忽略可排序的导入,它将无法正常工作。 我该如何解决?
答案 0 :(得分:0)
Sortable是JQuery的插件,因此不需要导入为变量:
import sortable from 'jquery-ui/ui/widgets/sortable';
更改为
import 'jquery-ui/ui/widgets/sortable';