当前位置: 首页 > 知识库问答 >
问题:

图像:您可能需要一个适当的加载程序来处理此文件类型

宋飞掣
2023-03-14

我不知道在ReactJS网页包中加载图像的合适加载程序是什么,

你可以帮我一把吗?我得到这个错误:

Module parse failed: /Users/imac/Desktop/fakeeh/imgs/logo.png Unexpected character '�' (1:0)
You may need an appropriate loader to handle this file type.

以下是网页包配置:

const path = require('path');


module.exports = {
  // the entry file for the bundle
  entry: path.join(__dirname, '/client/src/app.jsx'),

  // the bundle file we will get in the result
  output: {
    path: path.join(__dirname, '/client/dist/js'),
    filename: 'app.js',
  },

  module: {

    // apply loaders to files that meet given conditions
    loaders: [{
      test: /\.jsx?$/,
      include: path.join(__dirname, '/client/src'),
      loader: 'babel-loader',
      query: {
        presets: ["react", "es2015", "stage-1"]
      }
    }],
  },

  // start Webpack in a watch mode, so Webpack will rebuild the bundle on changes
  watch: true
};

非常感谢!!

共有3个答案

鲜于宜修
2023-03-14

使用Webpack 3,您可以使用url-loader如下所示:

安装url加载程序

npm install --save url-loader

然后,在您的网页包配置中:

module.exports = {
  module: {
    rules: [
      {
        test: /\.(png|jpg|gif)$/i,
        use: [
          {
            loader: 'url-loader',
            options: {
              limit: 8192
            }
          }
        ]
      }
    ]
  }
}

最后,在代码中:

<img src={require('./path/to/image.png')} />
颛孙钱青
2023-03-14

您可以使用文件加载器。你需要先使用npm安装它,然后像这样编辑你的webpack配置

module: {

    // apply loaders to files that meet given conditions
    loaders: [{
      test: /\.jsx?$/,
      include: path.join(__dirname, '/client/src'),
      loader: 'babel-loader',
      query: {
        presets: ["react", "es2015", "stage-1"]
      }
    },
    {
      test: /\.(gif|svg|jpg|png)$/,
      loader: "file-loader",
    }],
  },
笪栋
2023-03-14

我也遇到了这个问题,我找到了一个解决办法。

首先,您需要安装两个加载程序(文件加载程序、url加载程序)。e、 g.$npm安装--保存文件加载程序url加载程序

如果你想支持CSS确保你安装了样式加载器。例如,$npm安装-保存样式加载器css-loader

接下来,您将更新webpack配置,请检查下面的示例配置。希望能有帮助。

  module: {
    loaders: [{
      test: /.jsx?$/,
      loader: 'babel-loader',
      exclude: /node_modules/
    }, {
      test: /\.css$/,
      loader: "style-loader!css-loader"
    }, {
      test: /\.(jpe?g|png|gif|woff|woff2|eot|ttf|svg)(\?[a-z0-9=.]+)?$/,
      loader: 'url-loader?limit=100000' }]
  },
 类似资料: