mirror of
https://github.com/LC044/WeChatMsg
synced 2025-04-05 20:08:01 +08:00
修复str_content转义问题
This commit is contained in:
parent
5f11483d1a
commit
641c880d11
@ -1,4 +1,5 @@
|
|||||||
import csv
|
import csv
|
||||||
|
import html
|
||||||
import os
|
import os
|
||||||
|
|
||||||
from PyQt5.QtCore import pyqtSignal, QThread
|
from PyQt5.QtCore import pyqtSignal, QThread
|
||||||
@ -10,6 +11,24 @@ if not os.path.exists('./data/聊天记录'):
|
|||||||
os.mkdir('./data/聊天记录')
|
os.mkdir('./data/聊天记录')
|
||||||
|
|
||||||
|
|
||||||
|
def escape_js_and_html(input_str):
|
||||||
|
# 转义HTML特殊字符
|
||||||
|
html_escaped = html.escape(input_str, quote=False)
|
||||||
|
|
||||||
|
# 手动处理JavaScript转义字符
|
||||||
|
js_escaped = (
|
||||||
|
html_escaped
|
||||||
|
.replace("\\", "\\\\")
|
||||||
|
.replace("'", r"\'")
|
||||||
|
.replace('"', r'\"')
|
||||||
|
.replace("\n", r'\n')
|
||||||
|
.replace("\r", r'\r')
|
||||||
|
.replace("\t", r'\t')
|
||||||
|
)
|
||||||
|
|
||||||
|
return js_escaped
|
||||||
|
|
||||||
|
|
||||||
class Output(QThread):
|
class Output(QThread):
|
||||||
"""
|
"""
|
||||||
发送信息线程
|
发送信息线程
|
||||||
@ -638,9 +657,7 @@ const chatMessages = [
|
|||||||
avatar = 'myhead.png' if is_send else 'tahead.png'
|
avatar = 'myhead.png' if is_send else 'tahead.png'
|
||||||
timestamp = message[5]
|
timestamp = message[5]
|
||||||
self.progressSignal.emit(index)
|
self.progressSignal.emit(index)
|
||||||
str_content = str_content.replace('"', '\\"').replace('{', '\\{').replace('}', '\\}').replace('\n',
|
str_content = escape_js_and_html(str_content)
|
||||||
'\\n').replace(
|
|
||||||
"'", "\\'")
|
|
||||||
if type_ == 1:
|
if type_ == 1:
|
||||||
if self.is_5_min(timestamp):
|
if self.is_5_min(timestamp):
|
||||||
f.write(
|
f.write(
|
||||||
|
Loading…
Reference in New Issue
Block a user