NUXT:找不到模块:错误:无法解析“ fs”

use*_*629 3 node.js webpack vue.js nuxt.js

我从vue和nuxt开始,我有一个使用vuetify的项目,并且试图修改轮播组件以从静态文件夹动态加载图像。到目前为止,我已经提出了:

    <template>
    <v-carousel>
        <v-carousel-item v-for="(item,i) in items" :key="i" :src="item.src"></v-carousel-item>
    </v-carousel>
    </template>


    <script>
    function getImagePaths() {
        var glob = require("glob");
        var options = {
        cwd: "./static"
        };
        var fileNames = glob.sync("*", options);
        var items = [];
        fileNames.forEach(fileName =>
        items.push({
            'src': '/'+fileName
        })
        );
        return items;
    }
    export default {
        data() {
        return {items :getImagePaths()};
        }
    };

    </script>
Run Code Online (Sandbox Code Playgroud)

当我对此进行测试时,我看到:

ERROR in ./node_modules/fs.realpath/index.js
Module not found: Error: Can't resolve 'fs' in '....\node_modules\fs.realpath'
ERROR in ./node_modules/fs.realpath/old.js
Module not found: Error: Can't resolve 'fs' in ....\node_modules\fs.realpath'
ERROR in ./node_modules/glob/glob.js
Module not found: Error: Can't resolve 'fs' in '....\node_modules\glob'
ERROR in ./node_modules/glob/sync.js
Module not found: Error: Can't resolve 'fs' in '.....\node_modules\glob'
Run Code Online (Sandbox Code Playgroud)

谷歌搜索我看到一堆参考,如https://github.com/webpack-contrib/css-loader/issues/447

这些建议您必须使用类似以下内容来简化webpack配置文件:

node: {
  fs: 'empty'
}
Run Code Online (Sandbox Code Playgroud)

我对webpack知之甚少。我找到了https://nuxtjs.org/faq/extend-webpack/,但不确定在这种情况下如何修改webpack配置文件。

我该怎么做呢?

Bal*_*aji 7

我知道这是一个老问题,但对于某人在浏览器中禁用 fs 可能会有所帮助。
像这样:

nuxt.config.js

  build: {
    extend (config, { isDev, isClient }) {

       config.node= {
          fs: 'empty'
        }

       // ....
    }
  },
Run Code Online (Sandbox Code Playgroud)


nmf*_*one 5

您不能在浏览器上使用NodeJ的特定模块。

为了解决您的问题,您可以使用Nuxt服务器中间件创建API。以下代码受https://github.com/nuxt-community/express-template的启发。

  1. 创建一个文件,index.jsapi/index.js。然后填充:

    const express = require('express')
    
    // Create express instance
    const app = express()
    
    // Require API routes
    const carousel = require('./routes/carousel')
    
    // Import API Routes
    app.use(carousel)
    
    // Export the server middleware
    module.exports = {
      path: '/api',
      handler: app
    }
    
    Run Code Online (Sandbox Code Playgroud)
  2. carousel.js在中创建api/routes/carousel.js。然后填充:

    const { Router } = require('express')
    const glob = require('glob')
    
    const router = Router()
    
    router.get('/carousel/images', async function (req, res) {
      const options = {
        cwd: './static'
      }
      const filenames = glob.sync('*', options)
    
      let items = [];
      filenames.forEach(filename =>
        items.push({
          'src': '/'+filename
        })
      );
    
      return res.json({ data: items })
    })
    
    module.exports = router
    
    Run Code Online (Sandbox Code Playgroud)
  3. 在注册您的服务器中间件 nuxt.config.js

    module.exports = {
      build: {
        ...
      },
      serverMiddleware: [
        '~/api/index.js'
      ]
    }
    
    Run Code Online (Sandbox Code Playgroud)
  4. 在页面/组件中调用api。我假设您在这里使用Axios(axios-module)。

    <script>
    export default {
      async asyncData ({ $axios }) {
        const images = (await $axios.$get('/api/carousel/images')).data
    
        return { images }
      }
    }
    </script>
    
    Run Code Online (Sandbox Code Playgroud)