create-react-app 中的 src/images 文件夹

IT技术 javascript reactjs webpack create-react-app
2021-05-11 22:40:47

我有一个使用create-react-app. 我想要这样的文件夹结构:

src/
  components/
    CustomAppBar.js
  images/
    logo.svg
  App.js
  index.tsx
images.d.ts

目前我想logo.svg在图像文件夹中使用CustomAppBar.js. 目前这个文件看起来像这样:

import React from 'react';
import PropTypes from 'prop-types';
import { withStyles } from '@material-ui/core/styles';
import AppBar from '@material-ui/core/AppBar';
import Toolbar from '@material-ui/core/Toolbar';
import Typography from '@material-ui/core/Typography';
import Button from '@material-ui/core/Button';
import IconButton from '@material-ui/core/IconButton';
import MenuIcon from '@material-ui/icons/Menu';
import logo from '*.svg';

const styles = {
  flex: {
    flex: 1,
  },
  menuButton: {
    marginLeft: -12,
    marginRight: 20,
  },
  root: {
    flexGrow: 1,
  },
};

function ButtonAppBar(props) {
  const { classes } = props;
  return (
    <div className={classes.root}>
      <AppBar position="static" title={<img styles={{height: '50px'}} src={logo} />}>
        <Toolbar>
          <IconButton className={classes.menuButton} color="inherit" aria-label="Menu">
            <MenuIcon />
          </IconButton>
          <Typography variant="title" color="inherit" className={classes.flex}>
            Title
          </Typography>
          <Button color="inherit">Login</Button>
        </Toolbar>
      </AppBar>
    </div>
  );
}

ButtonAppBar.propTypes = {
  classes: PropTypes.object.isRequired,
};

export default withStyles(styles)(ButtonAppBar);

正如预期的那样,这失败了:

Module not found: Can't resolve '*.svg' in 'some\path\src\components

内容images.d.ts为库存标准:

declare module '*.svg'
declare module '*.png'
declare module '*.jpg'

我在其他地方发现了一些提到修改 Webpack 配置的建议。它似乎create-react-app隐藏了 Webpack 配置的东西。在这方面,最佳做法是什么?

2个回答

我通常为资产做的事情/public/assets我导入我的文件然后在我的react组件中使用 src 我可以使用它们访问process.env.PUBLIC_URL + '/assets/{ENTER REST OF PATH HERE}'

这是我如何实现它的代码示例。

import React, { Component } from 'react';

const iconPath = process.env.PUBLIC_URL + '/assets/icons/';

export default class TestComponent extends Component {
    constructor(props) {
        super(props);
    }
    render(){
    return (<img
        src={`${iconPath}icon-arrow.svg`}
        alt="more"
    />)
    }
}

这是让我开始以这种方式实施它的链接。 https://github.com/facebook/create-react-app/issues/2854

我还注意到您导入的徽标不正确,应该是,import logo from '../images/logo.svg'或者如果 logo.svg 没有您应该使用的导出默认值import {logo} from '../images/logo.svg'

您可以使用 ES6 导入从根文件夹中定位任何文件(图像、音频等)并将它们添加到您的应用程序中。

import React from 'React'
import errorIcon from './assets/images/errorIcon.svg'
import errorSound from './assets/sounds/error.wav'

class TestComponent extends React.Component 
{ 
    render() 
    {
        return (

            <div>
                <img src={ errorIcon }
                     alt="error Icon" />

                <audio src={ errorSound } />
            </div>
        )
    }
}