我正在尝试在我的反应应用程序中使用 ion-rangeslider。但它没有在网页上显示 ui。我正在像这样初始化我的 componentDidMount 方法
componentDidMount = () => {
$("#ionSlider-newTag").ionRangeSlider({
min: 0,
max: 5000,
type: 'double',
postfix: 's',
maxPostfix: "+",
prettify: false,
hasGrid: true,
from: 1600,
to: 2950
});
我也尝试在不使用 jquery 的情况下进行初始化
var slider = document.getElementById('ionSlider-newTag');
ionRangeSlider.create(slider,{
min: 0,
max: 5000,
type: 'double',
postfix: 's',
maxPostfix: "+",
prettify: false,
hasGrid: true,
from: 1600,
to: 2950
});
但它给了我错误说
Uncaught TypeError: _ionRangeslider2.default.create is not a function
我用create来初始化noUiSlider,它在那里工作。但是 create 不适用于 ionrangeslider。
我怎样才能解决这个完整的问题?