0
我使用
react-scroll
但文檔中它使用ES5反應滾動有問題ES6
到目前爲止,我的代碼如下
import React, {Component} from 'react';
import Scroll from 'react-scroll';
class Footer extends Component {
constructor(props) {
super(props);
}
scrollToTop() {
scroll.scrollToTop();
}
render() {
return (
<footer id='footer' className="container-fluid">
<a className="black-link" id="toTop" onClick={this.scrollToTop}>
<div className="dotted-line"></div>
<i className="fa fa-chevron-up" aria-hidden="true"></i>
Back to Top
</a>
</footer>
);
}
}
export default Footer;
但是我越來越TypeError: scroll.scrollToTop is not a function
在文檔中,我看到下面的var
s,但我不確定如何處理它們,因爲我用ES6很新穎。
var Link = Scroll.Link;
var Element = Scroll.Element;
var Events = Scroll.Events;
var scroll = Scroll.animateScroll;
var scrollSpy = Scroll.scrollSpy;
完美!你能解釋一下爲什麼這有效嗎? – NooBskie