Ant Design库Table组件超长字符串不换行解决

问题:

columns中已经定义了宽度,可以没有作用

    {
      title: 
作废编号
, dataIndex: 'legalFileCode', width: 280, render: val =>
{val || '--'}
, className: styles.tableCenter, },

Ant Design库Table组件超长字符串不换行解决_第1张图片

 

解决:

加折断样式处理

    {
      title: 
作废编号
, dataIndex: 'legalFileCode', width: 280, render: val =>
{val || '--'}
, className: styles.tableCenter, },

完美解决: 

Ant Design库Table组件超长字符串不换行解决_第2张图片

 

 

 

 

 

你可能感兴趣的:(JavaScript,react,小技巧)