我想在下一个js react应用程序中使用jQuery owl carousel。
我不想仅使用react-owl-carousel
和owl-carousel
插件的npm软件包jquery
。
我对next.js dynamic
使用延迟加载,并将以下代码放入我的Webpack配置中:
import dynamic from 'next/dynamic';
const Slider = dynamic(() => import('...'), {
ssr: false,
});
Webpack配置:
config.plugins.push(new webpack.ProvidePlugin({
$: 'jquery',
jQuery: 'jquery',
'window.jQuery': 'jquery',
}));
滑块组件:
import 'owl.carousel';
import 'owl.carousel/dist/assets/owl.carousel.css';
当我使用$('element').owlCarousel(...)
时,出现以下错误:
TypeError:this.owl.owlCarousel不是函数
答案 0 :(得分:0)
检查包文件后,我发现webpack将另一个jQuery实例传递给owl.carousel文件
这是webpack捆绑包代码
__webpack_require__(/*! jquery */ "../../node_modules/owl.carousel/node_modules/jquery/dist/jquery.js")
您会看到jQuery从node_modules/owl.carousel/node_modules/jquery/dist/jquery.js
而不是node_modules/jquery/dist/jquery.js
传递给插件
我通过删除node_modules/owl.carousel/node_modules
在该webpack传递node_modules/jquery/dist/jquery.js
作为jquery实例之后
答案 1 :(得分:0)
在 next.js 项目根目录下的 next.config.js 文件中通过 jQuery 和 webpack 注入全局窗口
module.exports = {
webpack: (config, {
buildId,
dev,
isServer,
defaultLoaders,
webpack
}) => {
// Note: we provide webpack above so you should not `require` it
// Perform customizations to webpack config
config.plugins.push(
new webpack.ProvidePlugin({
$: "jquery",
jQuery: "jquery",
"window.jQuery": "jquery"
})
);
// Important: return the modified config
return config;
}
使用 react-owl-carousel
组件的滑块组件
import OwlCarousel from "react-owl-carousel";
export default function MySlider({ sliders }) {
return (
<section>
<OwlCarousel
loop={true}
items={1}
responsiveRefreshRate={0}
autoplay={true}
autoplayTimeout={7000}
autoplayHoverPause={true}
nav={true}
navText={[
"<i class='icon-arrow-prev'></i>",
"<i class='icon-arrow-next'></i>"
]}
dots={false}
margin={20}
>
<div class="item"></div>
<div class="item"></div>
</OwlCarousel>
</section>
);
}
导入组件并在您的父组件上使用。请注意,您必须使用 ssr:false
选项。 Next.js 文档推荐
const MySlider = dynamic(
() => import("./Myslider"),
// No need for SSR, when the module includes a library that only works in the
// browser.
{ ssr: false }
);
编码愉快。
答案 2 :(得分:0)
在 next.config.js 中:
const webpack = require('webpack');
module.exports = {
webpack: (config, { buildId, dev, isServer, defaultLoaders, webpack }) => {
config.plugins.push(new webpack.ProvidePlugin({
$: 'jquery',
jQuery: 'jquery',
'window.jQuery': 'jquery'
}))
return config;
}}
在您的组件中:
import "owl.carousel/dist/assets/owl.carousel.css";
import "owl.carousel/dist/assets/owl.theme.default.css";
const OwlCarousel = dynamic(import("react-owl-carousel"), {ssr: false});