Schritte zum Installieren von jQuery in Nuxt.js
P粉755863750
P粉755863750 2023-11-06 16:41:50
0
1
658

Obwohl ich versucht habe, jQuery zu meinem Projekt hinzuzufügen, ist eine Fehlermeldung aufgetreten, die besagt, dass es nicht definiert ist.

plugins: [
    { src: '~/plugins/js/svgSprite.js', mode: 'client' },
    { src: '~/plugins/vendor/jquery/jquery.min.js', mode: 'client' },
    { src: '~/plugins/vendor/bootstrap/js/bootstrap.bundle.min.js', mode: 'client' },
    { src: '~/plugins/vendor/bootstrap-select/js/bootstrap-select.min.js', mode: 'client' }, <-- 给我报错
    { src: '~/plugins/vendor/magnific-popup/jquery.magnific-popup.min.js', mode: 'client' },
    { src: '~/plugins/vendor/smooth-scroll/smooth-scroll.polyfills.min.js', mode: 'client' },
    { src: '~/plugins/vendor/object-fit-images/ofi.min.js', mode: 'client' },
    { src: '~/plugins/js/theme.js', mode: 'client' }
  ],

Warum passiert das? Offensichtlich habe ich jQuery vor Bootstrap-Select deklariert.

P粉755863750
P粉755863750

Antworte allen(1)
P粉277824378

我不建议在Nuxt项目中添加jQuery。


但是如果你真的想要添加,可以按照以下步骤进行:

  • 使用yarn add jquery安装它
  • 将以下内容添加到你的nuxt.config.js文件中
import webpack from 'webpack'

export default {
  // ...
  build: {
    plugins: [
      new webpack.ProvidePlugin({
        $: 'jquery',
        jQuery: 'jquery',
        'window.jQuery': 'jquery'
      })
    ]
  },
}
  • 确保你的.eslintrc.js文件中有以下内容
module.exports = {
  // ...
  env: {
    // ...
    commonjs: true,
    jquery: true
  },
}

然后,你可以在method或类似的地方这样使用它

$("h2").addClass("tasty-class")
Beliebte Tutorials
Mehr>
Neueste Downloads
Mehr>
Web-Effekte
Quellcode der Website
Website-Materialien
Frontend-Vorlage
Über uns Haftungsausschluss Sitemap
Chinesische PHP-Website:Online-PHP-Schulung für das Gemeinwohl,Helfen Sie PHP-Lernenden, sich schnell weiterzuentwickeln!