我尝试在单元格(表格)中插入 React 图标,但收到消息
无法在“Node”上执行“appendChild”:参数 1 不是“Node”类型。
我的代码很简单:
const iconCell = row.insertCell(4);
const iconDiv = document.createElement('div');
iconDiv.appendChild("<FontAwesomeIcon icon={RiDeleteBin6Line}/>");
iconCell.appendChild(iconDiv);
我应该使用普通图标而不是 React 图标:
iconDiv.appendChild("");