Skip to content

🐛 [BUG]6.0.0-beta.2 使用wangeditor 赋值内容时生产环境下报错 #11706

@a152832

Description

@a152832

🐛 bug 描述

ant design pro 6.0.0-beta.2版本,config配置中使用utoopack打包,wangeditor 生产环境回显内容时报错、dev环境下回显正常。

Image

报错信息
Image

config配置中使用mako的话,开发环境、生产环境都正常

Image

📷 复现步骤 | Recurrence steps

🏞 期望结果 | Expected results

wangeditor 赋值时显示正常

💻 复现代码 | Recurrence code

import { Editor, Toolbar } from '@wangeditor/editor-for-react';

  useEffect(() => {
    if (!open && editor) {
      editor.destroy();
      setEditor(null);
    }

    // 异步中赋值不行
    setTimeout(() => {
      setHtml(
        '<p style="margin-top: 5px; margin-bottom: 5px">1、本平台仅为内容的发布平台,发布内容均由发布者独立创作,仅代表发布者个人观点,不构成任何形式的博彩建议、投注引导或结果保证。</p><p style="margin-top: 5px; margin-bottom: 5px">2、平台坚决反对并禁止任何形式的非法博彩行为,严禁用户利用本平台内容参与赌博、投注等违规违法活动。</p><p style="margin-top: 5px; margin-bottom: 5px">3、足球比赛结果受多种因素影响,具有极强的不确定性,预测内容仅供用户参考娱乐,用户应理性看待,自行承担因参考预测内容产生的任何风险与损失,平台不承担相关责任。</p><p style="margin-top: 5px; margin-bottom: 5px">4、如发现违规博彩相关行为,请及时向平台举报,平台将配合相关部门依法处理。</p>'
      );
    }, 1000);

    // 同步中赋值可以
    setHtml(
      '<p style="margin-top: 5px; margin-bottom: 5px">1、本平台仅为内容的发布平台,发布内容均由发布者独立创作,仅代表发布者个人观点,不构成任何形式的博彩建议、投注引导或结果保证。</p><p style="margin-top: 5px; margin-bottom: 5px">2、平台坚决反对并禁止任何形式的非法博彩行为,严禁用户利用本平台内容参与赌博、投注等违规违法活动。</p><p style="margin-top: 5px; margin-bottom: 5px">3、足球比赛结果受多种因素影响,具有极强的不确定性,预测内容仅供用户参考娱乐,用户应理性看待,自行承担因参考预测内容产生的任何风险与损失,平台不承担相关责任。</p><p style="margin-top: 5px; margin-bottom: 5px">4、如发现违规博彩相关行为,请及时向平台举报,平台将配合相关部门依法处理。</p>'
    );

  }, [open, editor]);

<Editor
  // defaultConfig={editorConfig}
  value={html}
  onCreated={setEditor}
  onChange={ed => {
    setHtml(ed.getHtml());
  }}
  mode="default"
  style={{ height: 400, overflowY: 'hidden' }}
/>

© 版本信息

  • Ant Design Pro 版本: 6.0.0-beta.2
  • umi 版本: "@umijs/max": "^4.6.25",
  • 浏览器环境:edge
  • 开发环境:windows

🚑 其他信息

wangeditor 版本

"@wangeditor/editor": "^5.1.23",
"@wangeditor/editor-for-react": "^1.0.6",

Metadata

Metadata

Assignees

Labels

No labels
No labels

Type

No type

Projects

No projects

Milestone

No milestone

Relationships

None yet

Development

No branches or pull requests

Issue actions