我一直在为WebPack遇到问题。我尝试在线搜索解决方案,但没有设法解决我的问题。
我正在使用以下项目结构来构建React应用程序:
package.json
webpack.config.js
src
- images
- components
-- Display
--- Display.js
--- config.js
- Frame
-- Frame.js
index.js
index.html
这是webpack.config.js
:
var path = require("path");
var HtmlWebpackPlugin = require("html-webpack-plugin");
module.exports = {
entry: "./src/index.js",
output: {
path: path.resolve(__dirname, "dist"),
filename: "index.js",
publicPath: "/"
},
module: {
rules: [
{ test: /.(js)$/, use: "babel-loader" },
{
test: /.(jpg|png|gif)$/,
use: {
loader: "url-loader",
options: {
name: "[name].[ext]"
}
}
},
{ test: /.css$/, use: ["style-loader", "css-loader"] },
{ test: /.json$/, loader: "json-loader" }
]
},
mode: "development",
plugins: [
new HtmlWebpackPlugin({
template: "src/index.html"
})
]
};
config.js
提供了一个带有Display.js
的图像路径的变量,然后将其传递给Frame.js
作为Prop。Frame.js
用提供的路径呈现图像。
//config.js
export const imgPath = "/src/images/icon.gif";
//Display.js
import {imgPath} from "./config.js";
<Frame imgSrc={imgPath} />
//Frame.js
<img src={this.props.imgSrc} />
我面临的问题是,映像icon.gif
不是在JavaScript捆绑包中输入的,而是浏览器提出了一个要求获取文件的请求,这不是预期的行为。当我在生产模式下构建应用程序时,根本不显示图像。
有人可以帮我做这件事吗?基本上,我面临两个问题:
- 图像不是由URL-LOADER插入的
- 在生产构建中,这些图像根本没有显示。
谢谢!
您必须先导入文件。但是,由于您的publicPath
设置为'/',并且您的图像发射到dist
中,因此您需要使用的图像的实际路径是/icon.gif
。
1(导入所有可能的文件(请确保在此处使用正确的路径(
// includes.js
import './src/images/icon1.gif';
import './src/images/icon2.gif';
import './src/images/icon3.gif';
2(导出生产文件路径函数
//config.js
import './includes.js';
export const imgPathFunc = num => `/icon${num}.gif`;
3(将其导入display.js
//Display.js
import { imgPath } from "./config.js";
{serverResponse && <Frame imgSrc={imgPath(serverResponse)} />}