如何用 webpack 文件加载器加载图像文件

我使用 网络包来管理一个 反应项目。我想用 webpack file-loader加载 javascript 中的图像。以下是 Webpack.config.js:

const webpack = require('webpack');
const path = require('path');
const NpmInstallPlugin = require('npm-install-webpack-plugin');


const PATHS = {
react: path.join(__dirname, 'node_modules/react/dist/react.min.js'),
app: path.join(__dirname, 'src'),
build: path.join(__dirname, './dist')
};


module.exports = {
entry: {
jsx: './app/index.jsx',
},
output: {
path: PATHS.build,
filename: 'app.bundle.js',
},
watch: true,
devtool: 'eval-source-map',
relativeUrls: true,
resolve: {
extensions: ['', '.js', '.jsx', '.css', '.less'],
modulesDirectories: ['node_modules'],
alias: {
normalize_css: __dirname + '/node_modules/normalize.css/normalize.css',
}
},
module: {
preLoaders: [


{
test: /\.js$/,
loader: "source-map-loader"
},
],
loaders: [


{
test: /\.html$/,
loader: 'file?name=[name].[ext]',
},
{
test: /\.jsx?$/,
exclude: /node_modules/,
loader: 'babel-loader?presets=es2015',
},
{test: /\.css$/, loader: 'style-loader!css-loader'},
{test: /\.(jpe?g|png|gif|svg)$/i, loader: "file-loader?name=/public/icons/[name].[ext]"},
{
test: /\.js$/,
exclude: /node_modules/,
loaders: ['babel-loader?presets=es2015']
}
]
},
plugins: [
new webpack.optimize.UglifyJsPlugin({
compress: {
warnings: false,
},
output: {
comments: false,
},
}),
new NpmInstallPlugin({
save: true // --save
}),
new webpack.DefinePlugin({
"process.env": {
NODE_ENV: JSON.stringify("production")
}
}),
],
devServer: {
colors: true,
contentBase: __dirname,
historyApiFallback: true,
hot: true,
inline: true,
port: 9091,
progress: true,
stats: {
cached: false
}
}
}

我使用这一行加载图像文件并将它们复制到 dist/public/icon 目录,并保持相同的文件名。

{test: /\.(jpe?g|png|gif|svg)$/i, loader: "file-loader?name=/public/icons/[name].[ext]"}

但是我在使用它的时候有两个问题。当我运行 webpack命令时,映像文件按预期复制到 Dist/public/icon/目录。但是,它也被复制到文件名为“ df55075baa16f3827a57549950901e90.png”的 dist 目录。

下面是我的项目结构: enter image description here

另一个问题是,我使用下面的代码导入这个图像文件,但它没有显示在浏览器上。如果我在 img 标记上使用 url‘ public/icon/imageview _ item _ norm.png’,那么它工作得很好。如何使用从图像文件导入的对象?

import React, {Component} from 'react';
import {render} from 'react-dom';
import img from 'file!../../public/icons/imageview_item_normal.png'


export default class MainComponent extends Component {


render() {
return (
<div style={styles.container}>
download
<img src={img}/>
</div>
)
}


}


const styles = {
container: {
width: '100%',
height: '100%',
}
}
253396 次浏览

关于第一个问题

一旦在 webpack.config 中配置了文件加载程序,无论何时使用 import/need,它都会针对所有加载程序测试路径,如果有匹配,它将通过该加载程序传递内容。对你来说,是吻合的

{
test: /\.(jpe?g|png|gif|svg)$/i,
loader: "file-loader?name=/public/icons/[name].[ext]"
}


// For newer versions of Webpack it should be
{
test: /\.(jpe?g|png|gif|svg)$/i,
loader: 'file-loader',
options: {
name: '/public/icons/[name].[ext]'
}
}

因此你可以看到发射到

dist/public/icons/imageview_item_normal.png

这是通缉行为。

您还获得哈希文件名的原因是,您正在添加一个额外的内联文件加载程序。您将图像导入为:

'file!../../public/icons/imageview_item_normal.png'.

使用 file!作为前缀,再次将文件传递到文件加载程序,这一次它没有名称配置。

所以你的重要性应该是:

import img from '../../public/icons/imageview_item_normal.png'

更新

正如@cgatian 所指出的,如果您实际上希望使用内联文件加载器,而忽略 webpack 全局配置,那么您可以在导入前加上两个感叹号(!):

import '!!file!../../public/icons/imageview_item_normal.png'.

关于第二个问题

导入 png 之后,img变量只保存文件加载程序“知道”的路径,即 public/icons/[name].[ext](又名 "file-loader? name=/public/icons/[name].[ext]")。您的输出目录“ dist”是未知的。 你可以用两种方法解决这个问题:

  1. 在“ dist”文件夹下运行所有代码
  2. publicPath属性添加到输出配置中,该属性指向输出目录(在您的示例中是./dist)。

例如:

output: {
path: PATHS.build,
filename: 'app.bundle.js',
publicPath: PATHS.build
},

我有一个问题上传图像到我的反应 JS 项目。我试图使用文件加载程序来加载图像; 我也使用 Babel-loader 作为我的反应。

我在 webpack 中使用了以下设置:

{test: /\.(jpe?g|png|gif|svg)$/i, loader: "file-loader?name=app/images/[name].[ext]"},

这有助于加载我的图像,但加载的图像有点损坏。然后经过一些研究,我开始知道,文件加载程序有一个错误,损坏的图像时,巴贝尔加载程序安装。

因此,为了解决这个问题,我尝试使用 URL 加载器,它对我来说非常有用。

我用以下设置更新了我的网络包

{test: /\.(jpe?g|png|gif|svg)$/i, loader: "url-loader?name=app/images/[name].[ext]"},

然后使用以下命令导入图像

import img from 'app/images/GM_logo_2.jpg'
<div className="large-8 columns">


<img  style=\{\{ width: 300, height: 150 }} src={img} />
</div>

或者你也可以这样写

{
test: /\.(svg|png|jpg|jpeg|gif)$/,
include: 'path of input image directory',
use: {
loader: 'file-loader',
options: {
name: '[path][name].[ext]',
outputPath: 'path of output image directory'
}
}
}

然后使用简单的导入

import varName from 'relative path';

在 jsx 中写成 <img src={varName} ..../>

....用于其他图像属性

首先安装文件加载程序:

$ npm install file-loader --save-dev

并在 webpack.config.js 中添加此规则

           {
test: /\.(png|jpg|gif)$/,
use: [{
loader: 'file-loader',
options: {}
}]
}

Webpack.config.js

{
test: /\.(png|jpe?g|gif)$/i,
loader: 'file-loader',
options: {
name: '[name].[ext]',
},
}

Anyfile.html

<img src={image_name.jpg} />

这是我的简单 Vue 组件的工作示例。

<template functional>
<div v-html="require('!!html-loader!./../svg/logo.svg')"></div>
</template>

使用 webpack5,您可以使用资产模块而不是文件加载器。

Asset Modules is a type of module that allows one to use asset files (fonts, icons, etc) without configuring additional loaders.Asset Modules type replaces by adding asset/resource emits a separate file and exports the URL. Previously achievable by using file-loader.


module: {
rules: [
{
test: /\.png/,
type: 'asset/resource'
}
]
},

更多信息请访问 文件