MUI - handleChange 函数中的 newValue 是什么?

MUI - What is newValue in the handleChange function?

我有来自 MUI 选项卡 (https://mui.com/material-ui/react-tabs/#BasicTabs.tsx) 的示例代码。完整代码如下。

我的问题是,这段代码中的newValue是什么?它正在读取哪个值,它来自哪里?它在没有 event 的情况下抛出错误,所以看起来它是链接的,但我无法完全理解这部分。

  const handleChange = (event: React.SyntheticEvent, newValue: number) => {
    setValue(newValue);
  };

完整代码

import * as React from 'react';
import Tabs from '@mui/material/Tabs';
import Tab from '@mui/material/Tab';
import Typography from '@mui/material/Typography';
import Box from '@mui/material/Box';

interface TabPanelProps {
  children?: React.ReactNode;
  index: number;
  value: number;
}

function TabPanel(props: TabPanelProps) {
  const { children, value, index, ...other } = props;

  return (
    <div
      role="tabpanel"
      hidden={value !== index}
      id={`simple-tabpanel-${index}`}
      aria-labelledby={`simple-tab-${index}`}
      {...other}
    >
      {value === index && (
        <Box sx={{ p: 3 }}>
          <Typography>{children}</Typography>
        </Box>
      )}
    </div>
  );
}

function a11yProps(index: number) {
  return {
    id: `simple-tab-${index}`,
    'aria-controls': `simple-tabpanel-${index}`,
  };
}

export default function BasicTabs() {
  const [value, setValue] = React.useState(0);

  const handleChange = (event: React.SyntheticEvent, newValue: number) => {
    setValue(newValue);
  };

  return (
    <Box sx={{ width: '100%' }}>
      <Box sx={{ borderBottom: 1, borderColor: 'divider' }}>
        <Tabs value={value} onChange={handleChange} aria-label="basic tabs example">
          <Tab label="Item One" {...a11yProps(0)} />
          <Tab label="Item Two" {...a11yProps(1)} />
          <Tab label="Item Three" {...a11yProps(2)} />
        </Tabs>
      </Box>
      <TabPanel value={value} index={0}>
        Item One
      </TabPanel>
      <TabPanel value={value} index={1}>
        Item Two
      </TabPanel>
      <TabPanel value={value} index={2}>
        Item Three
      </TabPanel>
    </Box>
  );
}

基本上 newValue 它与选项卡索引有关。

因此,当用户更改选项卡时,MUI 代码在内部处理 onChange 事件调用,传递事件本身和 newValue(单击选项卡索引)。并用它 MUI 标识用户单击的选项卡并将其更改为在屏幕上生效。

您可以查看定义here