Skip to content
项目
群组
代码片段
帮助
当前项目
正在载入...
登录 / 注册
切换导航面板
W
WebPublic
项目
项目
详情
活动
周期分析
仓库
仓库
文件
提交
分支
标签
贡献者
图表
比较
统计图
议题
0
议题
0
列表
看板
标记
里程碑
合并请求
0
合并请求
0
CI / CD
CI / CD
流水线
作业
日程
统计图
Wiki
Wiki
代码片段
代码片段
成员
成员
折叠边栏
关闭边栏
活动
图像
聊天
创建新问题
作业
提交
问题看板
Open sidebar
前端开发小组
WebPublic
Commits
05941989
提交
05941989
authored
8月 05, 2024
作者:
李仕聪
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
feat: 修改富文本编辑器
上级
9abae992
显示空白字符变更
内嵌
并排
正在显示
1 个修改的文件
包含
39 行增加
和
1 行删除
+39
-1
WordMenu.js
zyd_public/WangEditor/DiyMenu/WordMenu.js
+39
-1
没有找到文件。
zyd_public/WangEditor/DiyMenu/WordMenu.js
浏览文件 @
05941989
...
...
@@ -10,6 +10,34 @@ import { queryApiActionPath, queryFileUrl } from '@/webPublic/one_stop_public/ut
const
E
=
Editor
;
const
{
BtnMenu
}
=
E
;
window
.
message
=
message
;
/**
* 提取HTML标签内的内容
*
* @param {*} html
* @param {标签} tag
* @return {*}
*/
function
extractBodyContent
(
html
,
tag
)
{
// 使用正则表达式匹配<body>标签内的内容
// 注意:这个正则表达式假设<body>标签内不会嵌套另一个<html>或<head>等标签
// 这种情况在正常的HTML文档中几乎不会发生
let
regex
;
if
(
tag
===
'body'
)
{
regex
=
/<body
[^
>
]
*>
([\s\S]
*
?)
<
\/
body>/i
;
}
if
(
tag
===
'style'
)
{
regex
=
/<style
[^
>
]
*>
([\s\S]
*
?)
<
\/
style>/i
;
}
const
match
=
html
.
match
(
regex
);
if
(
match
&&
match
.
length
>
1
)
{
// 返回<body>标签内的内容
return
match
[
1
];
}
else
{
// 如果没有找到<body>标签,则返回空字符串
return
''
;
}
}
export
default
class
WordMenu
extends
BtnMenu
{
constructor
(
editor
)
{
...
...
@@ -34,19 +62,29 @@ export default class WordMenu extends BtnMenu {
dom
.
onchange
=
(
v
)
=>
{
if
(
dom
.
files
&&
dom
.
files
.
length
)
{
window
.
message
.
info
(
'正在上传文件, 请耐心等待'
);
this
.
editor
.
disable
();
const
file
=
dom
.
files
[
0
];
const
fileName
=
file
.
name
;
uploadWordToHtml
(
file
)
.
then
((
res
)
=>
{
setTimeout
(()
=>
{
if
(
res
&&
res
.
html
)
{
this
.
editor
.
enable
();
window
.
message
.
success
(
'上传文件成功'
);
// 30354 【移动端】家庭经济困难学生认定,手机端这么搞,已通过项目组审核
// 将 embed 改完iframe 解决移动端不显示pdf 文件的bug
this
.
editor
.
txt
.
append
(
res
.
html
);
const
styleStr
=
extractBodyContent
(
res
.
html
,
'style'
);
const
newStyleStr
=
`<style type="text/css">.selfEditor
${
styleStr
.
replace
(
/
\}
/g
,
'} .selfEditor'
)}
</style>`
;
const
bodyStr
=
extractBodyContent
(
res
.
html
,
'body'
);
const
newHtml
=
`<div>
${
newStyleStr
}
<div class='selfEditor'>
${
bodyStr
}
</div></div>`
;
this
.
editor
.
txt
.
append
(
newHtml
);
}
},
2000
);
}).
catch
((
err
)
=>
{
this
.
editor
.
enable
();
window
.
message
.
error
(
'上传文件失败'
);
});
}
};
...
...
编写
预览
Markdown
格式
0%
重试
或
添加新文件
添加附件
取消
您添加了
0
人
到此讨论。请谨慎行事。
请先完成此评论的编辑!
取消
请
注册
或者
登录
后发表评论