开发者问题收集
我有一个使用 MUI 制作的小应用程序。它运行良好,直到我尝试添加ThemeProvider。一旦完成,应用程序就会中断,并且我正在使用的所有 MUI 组件都会开始抛出undefined。我正在尝试使用createTheme,并确保从"@mui/material/styles"导入它,因为我知道有一个类似的包会给其他人带来问题。这是我的代码:const light = {palette: {typ
我刚刚安装了 Material UI,发现如下消息:Compiled with problems:ERROR in ./node_modules/@mui/material/AccordionActions/AccordionActions.js 7:0-70Module not found: Error: Can't resolve '@mui/base' in 'C:\..\node_modu
我是 React 新手,我创建了这样的组件;export default class CartoviewDrawer extends React.Component {constructor(props) {super(props);this.state = {open: false};}_handleToggle() {let open = this.state.open;this.setSta
我想将material-ui与reactjs一起使用。当我想渲染FlatButton时,我收到此错误:TypeError:_context$muiTheme未定义我是reactjs新手,我不知道可能是什么错误。这是我的代码:import React, {Component} from 'react'import { Alert, Button, Jumbotron, Form } from 'r
我试图将 Material-Ui 中的 BasicTable 函数放入我的 React.js 文件中。这是我的代码。 import React, { Component } from 'react';import { Route, Redirect, Switch, Link, HashRouter} from 'react-router-dom';import firebase, { auth,
我使用 Material UI 1.0.0-beta.35 中的Tabs、Tab和Appbar来显示一些带有从包含数据的对象导入的标签的选项卡。我从 Material UI 收到此错误:Warning: Material-UI: the value provided `undefined` is invalid我可以在此codesandbox(Material UI 1.0.0-beta.38 但
因此,我尝试在我的 React 应用中使用 Material UI。我尝试使用 Material UI 版本 0.20.1 和 0.20.0,但收到此错误消息TypeError: Object(...) is not a function它指向此行export default withStyles(styles)(NavBar);我只是想创建一个导航栏,我尝试了很多方法。包括从文档中复制,但似乎不
我在 Windows 10 x64 b 中尝试webpack应用程序时收到以下错误。ERROR in ./node_modules/material-ui/styles/withStyles.jsModule not found: Error: Can't resolve '@babel/runtime/core-js/map'我在github和stackoverflow上搜索,但没有找到合适的答
我尝试从@material-ui/[email protected]切换到 Material 的最新当前版本v4.4.3,但出现了此错误我不清楚这个问题发生在哪段代码中以及如何修复它。也许有人对此有一些想法?此外,您可以在 package.json 文件中检查我的所有依赖项。如果您不清楚,请告诉我您需要哪些信息,我会将其附上。"dependencies": {"@babel/runtime": "
我开始在 react 和material ui 中开发一个新应用程序,遇到了一个问题:Error: React.cloneElement(...): The argument must be a React element, but you passed undefined.因此我还没有编写任何逻辑代码,我刚刚开始使用 react 和material ui。这个问题的解决方案和指导将非常有帮助。这
我在 handleChange 上收到此错误。我想知道问题是什么? const [testState, setTestState] = useState({activeStep:0,firstName: '',lastName: '',email: '',occupation: '',city: '',bio: ''});const { activeStep } = testState;const
当我在搜索栏上搜索时,出现无法读取属性值等错误,为什么会出现此错误,之前我做了很多表单,但没有出现此错误,请告诉我为什么会出现此错误,我应该使用 Material UI 而不是 Bootstrap 替换吗Music.js这是我出现错误的 music.js 文件,我使用 react-hooks 来管理状态import React, { useState } from 'react';import {
我必须访问按钮的值,因为它包含进一步操作所需的 ID。我首先使用带有一些引导样式的普通按钮,一切正常。 <buttonvalue={row.vacationRequestID}className="btn btn-warning"onClick={myRef.handleDeclineClick.bind(myRef)}>No</button>handleDeclineClick(e, value
我有一个现有的React项目,我想添加材料-UI库。因此,我已经使用了命令npm安装-Save Material-UI。但是当我运行它时,它会显示错误。这是错误详细信息 -361745105这是repositoryhttps://github.com/mui-org/material-ui948729638
如何在单击按钮时删除边框???我使用带有 Material-UI 包的 ReactJS。谢谢!!图片在这里