我需要将箭头函数转换为函数。这是由于Slick Slider does not support properly arrow functions的问题。
我已将其转换为
beforeChange={(current, next) => this.setState({slideIndex: next})}
对此:
beforeChange={function(current, next) {
this.setState({slideIndex: next});
}}
但是不起作用。已经尝试过此解决方案:
beforeChange={function(current, next) {
this.setState(function() {
return {slideIndex: next};
});
}}