提交 d1775999 编写于 作者: DCloud_JSON's avatar DCloud_JSON

更新 解决msg note存在    &ensp 符号的问题

上级 c76149cc
......@@ -130,8 +130,6 @@ export default {
note = "消息已被删除"
} else if (type === 'text') {
note = msg.body.toString()
note = note.replace(/(\r\n|\n|\r)/gm, "");
note = note.slice(0, 80)
} else if (type === 'userinfo-card') {
note = `[${msg.body.name} 的名片]`
} else {
......@@ -192,6 +190,12 @@ export default {
}
}
}
// 去掉换行符
note = note.replace(/(\r\n|\n|\r)/gm, "");
// 改      等空格为普通空格
note = note.replace(/ | | /g, ' ')
// 截取80个字符
note = note.slice(0, 80).trim()
return note
},
// 节流执行函数,用于控制频繁触发的事件。
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册