EddieUp / antd-table-saveas-excel

antd table to excel
53 stars 13 forks source link

表格下载的时候 表头render自定义的函数解析有问题 #26

Closed yaya1286249672 closed 2 years ago

yaya1286249672 commented 2 years ago

function getChildren(data) { var _ref = data || {}, props = _ref.props;

if (typeof props.children === 'string') return props.children; return props.children.reduce(function (prev, cur) { if (typeof prev === 'string') { return prev + ' ' + getChildren(cur); }

return getChildren(prev) + ' ' + getChildren(cur);

}, ''); }

EddieUp commented 2 years ago

function getChildren(data) { var _ref = data || {}, props = _ref.props;

if (typeof props.children === 'string') return props.children; return props.children.reduce(function (prev, cur) { if (typeof prev === 'string') { return prev + ' ' + getChildren(cur); }

return getChildren(prev) + ' ' + getChildren(cur);

}, ''); }

给个问题复现的在线例子吧

yaya1286249672 commented 2 years ago

比如render:(v)=>{ return

{v} 100%
}