Fix:修复在safari浏览器中运行时,页面空白且控制台抛出异常的问题
This commit is contained in:
parent
c0e0fb23e4
commit
211fa183d3
@ -887,7 +887,7 @@ class Render {
|
|||||||
)
|
)
|
||||||
} else {
|
} else {
|
||||||
text = htmlEscape(text)
|
text = htmlEscape(text)
|
||||||
const textArr = text.split(/\r?\n|(?<!\n)\r/g).filter(item => {
|
const textArr = text.split(new RegExp('\r?\n|(?<!\n)\r', 'g')).filter(item => {
|
||||||
return !!item
|
return !!item
|
||||||
})
|
})
|
||||||
// 判断是否需要根据换行自动分割节点
|
// 判断是否需要根据换行自动分割节点
|
||||||
|
|||||||
Loading…
x
Reference in New Issue
Block a user