【React】antd在table中使用dropdown组件

官方给出的dropdwpn使用方法无法在table中得到每一行的信息

import { Menu, Dropdown, Icon } from 'antd';

const menu = (
  
    
      
        1st menu item
      
    
    
      
        2nd menu item
      
    
    
      
        3rd menu item
      
    
  
);

ReactDOM.render(
  
    
      Hover me 
    
  ,
  mountNode,
);

所以改成在columns中改写Dropdown的箭头函数 这样就可以了

{
    width:'5rem',
    title: ,
    dataIndex:'action',
    key: 'action',
    render: (text, record,index) => (
      {
        return(
        
          Edit
          Previw  
          
             this.handleDelete(index)}>
              Delete
            
          
        
        )}}>
        
      
    ),

参考https://blog.csdn.net/superYe7/article/details/88836641

你可能感兴趣的:(React)