--- order: 2 title: zh-CN: 只展开当前父级菜单 en-US: Only to open the current parant menu --- ## zh-CN 点击菜单,收起其他展开的所有菜单,保持菜单聚焦简洁。 ## en-US Click the menu and you will see that all the other menus gets collapsed to keep the entire menu compact. ````jsx import { Menu, Icon } from 'antd'; const SubMenu = Menu.SubMenu; const Sider = React.createClass({ getInitialState() { return { current: '1', openKeys: [], }; }, handleClick(e) { console.log('click ', e); this.setState({ current: e.key, openKeys: e.keyPath.slice(1), }); }, onToggle(info) { this.setState({ openKeys: info.open ? info.keyPath : info.keyPath.slice(1), }); }, render() { return (
); }, }); ReactDOM.render(