将Owl Carousel 2与next.js结合使用并做出反应

时间:2019-06-18 09:49:48

标签: jquery reactjs next.js owl-carousel-2

我想在下一个js react应用程序中使用jQuery owl carousel。 我不想仅使用react-owl-carouselowl-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不是函数

3 个答案:

答案 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)

  1. 在 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;
            }
    
  2. 使用 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>
          );
        }
    
  3. 导入组件并在您的父组件上使用。请注意,您必须使用 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});