gpt4 book ai didi

reactjs - 我如何解决 React+Material UI 中的这个错误

转载 作者:行者123 更新时间:2023-12-02 00:34:32 25 4
gpt4 key购买 nike

尝试在 Mac 和 Ubuntu 中运行该应用程序时出现以下错误。但它在 Windows 平台上运行没有任何错误。我该如何解决这个问题。 Material UI beta 版本(v1.0.0-beta.46)中是否有任何特定于平台的代码。我使用了 withStyles 组件,它是 Material ui 的高阶组件。

错误:

/node_modules/material-ui/styles/withStyles.js
Module not found: Can't resolve '@babel/runtime/core-js/map'

下面是我的代码

import React from 'react';    
import PropTypes from 'prop-types';
import withStyles from 'material-ui/styles';
import AppBar from 'material-ui/AppBar';
import Toolbar from 'material-ui/Toolbar';
import Typography from 'material-ui/Typography';
import Button from 'material-ui/Button';
import Avatar from 'material-ui/Avatar';
import classNames from 'classnames';
import AppIcon from '../../assets/img/myAppIcon.png';

const styles = theme => ({
root: {
flexGrow: 1,
},
flex: {
flex: 1,
},
menuButton: {
marginLeft: -12,
marginRight: 20,
},
loginButton:{
alignContent: "flex-end"
},
avatar: {
margin: 10,
},
toolbar: {
display: 'flex',
alignItems: 'center',
justifyContent: 'flex-end',
padding: '0 8px',
...theme.mixins.toolbar,
},
content: {
flexGrow: 1,
backgroundColor: theme.palette.background.default,
padding: theme.spacing.unit * 3,
},
});

// Here is my functional component which renders the AppBar with login button at the right hand side.

function Layout(props) {
const { classes } = props;
return (
<div className={classes.root}>
<AppBar
position="absolute"
className={classNames(classes.appBar)}
>
<Toolbar>
<Avatar src={AppIcon} className={classes.avatar} />
<Typography variant="title" color="inherit" noWrap>
MyApp
</Typography>
<Typography variant="title" color="inherit" noWrap className={classes.flex} />
<Button color="inherit">Login</Button>
</Toolbar>
</AppBar>
<main className={classes.content}>
<div className={classes.toolbar} />
{props.children}
</main>
</div>
);
}

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

//Here I'm getting an error on executing this
export default withStyles(styles, { withTheme: true })(Layout);

最佳答案

你可以使用它,它会起作用。

npm install @babel/runtime

关于reactjs - 我如何解决 React+Material UI 中的这个错误,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/50252876/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com