我想将引导程序布局集成到ReactJS中。在这里,我遇到了一个问题,因为我错过了引导程序中的jquery文件,因此我的代码无法正常工作。 我很困惑如何在App.js中集成Jquery
import './App.css';
import './css/bootstrap.min.css';
import './css/style.css';
import './css/slick.css';
import './js/slick.min.js'; //Jquery
错误显示为:
Line 17: 'define' is not defined no-undef
Line 17: 'define' is not defined no-undef
Line 17: 'jQuery' is not defined no-undef
Line 17: Expected an assignment or function call and instead saw an
expression no-unused-expressions
Line 17: Expected an assignment or function call and instead saw an
expression no-unused-expressions
如何在App.js中添加slick.min.js
答案 0 :(得分:0)
引自:https://stackoverflow.com/a/33351325/11932228
首先尝试将jquery包含到您的项目中
只需使用npm安装jquery软件包:
npm i jquery --save
,或者如果您使用纱线:yarn add jquery
,或者如果您使用 bower :bower i jquery --save
并在您的App.js中:import $ from 'jquery';
如果它仍然不起作用,则可能需要检查其与react不兼容的布局要求。