我正在将模板转换为我网站的反应组件。但是,模板主要是在jquery中。外部javascripts与我的组件绑定不好,我必须将函数绑定到componentDidMount()
。
componentDidMount(){
$(".b-upper-title").slabText({
// Don't slabtext the headers if the viewport is under 380px
"viewportBreakpoint":380
});
}
但是,slabText()
无效,因为它依赖于<script src="styles/plugins/slabText/js/jquery.slabtext.min.js"></script>
。我需要将此脚本导入组件以调用该函数。知道如何执行任务吗?