如何使用webpack + react渲染图像?

时间:2018-09-06 16:47:19

标签: javascript reactjs webpack

我对响应和webpack相当陌生,但遇到了这个我不理解的奇怪问题。

问题:

enter image description here

当我检查图像时,以上就是我所看到的,显然没有显示出我的图像。我正在使用文件加载器。

我的结构:

enter image description here

webpack:

const path = require("path");
const webpack = require("webpack");

const bundlePath = path.resolve(__dirname, "dist/");

module.exports = {
  entry: "./src/index.js",
  module: {
    rules: [
      {
        test: /\.(js|jsx)$/,
        exclude: /(node_modules|bower_components)/,
        loader: "babel-loader",
        options: { presets: ["env"], plugins: ["transform-class-properties"] },
      },
      {
        test: /\.js$/,
        exclude: /node_modules/,
        use: ["eslint-loader"],
      },
      {
        test: /\.css$/,
        use: ["style-loader", "css-loader"],
      },

      {
        test: /\.(png|jpg|gif)$/,
        use: [
          {
            loader: "file-loader",
            options: {},
          },
        ],
      },
    ],
  },
  resolve: { extensions: ["*", ".js", ".jsx"] },
  output: {
    publicPath: bundlePath,
    filename: "bundle.js",
  },
  devServer: {
    contentBase: path.join(__dirname, "public"),
    port: 8080,
    publicPath: "http://localhost:8080/dist",
    historyApiFallback: true,
  },
  plugins: [new webpack.HotModuleReplacementPlugin()],
};

我想念什么?

编辑:

像这样导入图像:

import headerImage from "../../../../public/images/MyImage.jpg"

渲染如下:

class Header extends Component {
    linkClick = event => {
      if (this.props.properties.movment.position.x > 0) event.preventDefault();
    };
    render() {
      return (

              <Navbar inverse fluid >

              <Navbar.Header>
                <Navbar.Brand>
               <Image src={headerImage}/>
                </Navbar.Brand>
                <Navbar.Toggle />
              </Navbar.Header>

              <Navbar.Collapse>
                <Nav pullRight>
                <HeaderLinks linkClicked={this.linkClick} />
                </Nav>
              </Navbar.Collapse>

              </Navbar>
      );
    }
}

2 个答案:

答案 0 :(得分:1)

setTimeout(function () {
   //Redirect with JavaScript
   window.location.href= 'http://thisinterestsme.com/php-forcing-https-over-http/';
}, 5000);

您可以将上述代码插入index.js文件中,以直接从应用程序中的任何位置引用图像。

您也可以继续在标题文件中使用var requireImages = require.context('../public/images', true, /\.(jpg|png|gif|svg)$/); ,而不必分别导入每个图像。

编辑:请检查路径,并确保它指向dist> public> images文件夹中的图像

答案 1 :(得分:0)

这花了一些时间,但是似乎我需要增加字节数限制才能使它工作。

我还通过链接将@OlivierBoissé的webpack confic更改为建议者

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

以及以下内容:

  output: {
    path: path.resolve(__dirname, "dist"),
    publicPath: "/dist/",
    filename: "bundle.js",
  },