目前wangeditor已经到5.0版本,但是之前4.0版本能够做到复制粘贴excel和word文件时保留颜色样式文件,下面的代码基于
“wangeditor”: “^4.7.9”
(ps:项目环境在云桌面上运行代码,假如从本机excel复制文件到项目页面中是有颜色样式的,但是在云桌面里的excel里面复制的文件就不带样式,脑壳痛,为啥子。。。)
1、子组件editor.js
import Editor from './editor';
import {
Form } from 'antd';
import React, {
useState, useCallback } from 'react';
const TableEditor = props => {
// const { getFieldDecorator } = props.form;
const onChange = newHtml => {
var str=newHtml
if(newHtml.includes('<table>')){
str = newHtml.replace(/<table>/g, '<table border="1" width="100%" cellpadding="0">');
}
console.log('aaa', str);
if (window.parent != window) {
window.parent.ReactAPI.getComponentAPI('Input')
.APIs('checkreport.checkDataIn