Webpack未加载的静态图像

时间:2017-11-26 21:03:14

标签: javascript reactjs webpack urlloader

我正在使用Webpack使用React,我无法加载静态图像。加载器似乎正确地将图像转换为URL,但在呈现页面时它似乎不能用作img src。图像的相对路径是正确的。以下是我的代码:

webpack.config.dev.js:

module: {
loaders: [
  {
    test: /\.css$/,
    exclude: /node_modules/,
    loader: 'style-loader!css-loader?localIdentName=[name]__[local]__[hash:base64:5]&modules&importLoaders=1&sourceMap!postcss-loader',
  }, {
    test: /\.css$/,
    include: /node_modules/,
    loaders: ['style-loader', 'css-loader'],
  }, {
    test: /\.jsx*$/,
    exclude: [/node_modules/, /.+\.config.js/],
    loader: 'babel',
  }, {
    test: /\.(jpe?g|gif|png|svg)$/i,
    loader: 'url-loader',
    options: {
      limit: 25000,
    },
  }, {
    test: /\.json$/,
    loader: 'json-loader',
  }, { 
    test: /\.(png|woff|woff2|eot|ttf|svg)$/, loader: 'url-loader?limit=100000' }
],
},

反应代码

import React, { Component} from 'react';

import styles from './Album.css';

const logo = require('./img/MoP.png');

export class Album extends Component{
  constructor(props){
    super(props);

    console.log(logo);
}

render(){
    return (
        <div className = {styles.album}>
            <div className="row">
                <div className="col-8">
                    <div className="albumInfo">
                        <h6> {this.props.title} </h6>
                        <h6> {this.props.artist} </h6>
                        <h6> {this.props.date} </h6>
                        <h6> Rating: {this.props.rating} </h6>
                        <h6> {this.props.comment} </h6>
                    </div>
                </div>
                <div className="col-4 align-self-center">
                    <img src={logo}></img>
                </div>
            </div>
        </div>
    )
}
}

export default Album;

我尝试了一些使用url-loader和file-loader的不同方法,但我还没有运气。我很感激你的帮助!

谢谢。

2 个答案:

答案 0 :(得分:4)

从webpack配置看起来,您在相同的文件类型上运行了两次url-loader。这可能会破坏您的图像输出。

答案 1 :(得分:0)

您看到的是图像的base64编码。 我不熟悉'url-loader',但快速查看他们的page 说它将图像加载为base64。 您可以在此处找到有关它的一些有用信息:https://css-tricks.com/data-uris/ 如果您更喜欢图像路径而不是base64,则可能需要考虑使用不同的加载程序。希望它有所帮助。