Commit 22acb3c5 authored by liyang's avatar liyang

fix:去除富文本转义符号

parent 7143a4da
...@@ -47,7 +47,7 @@ def reptile(browser=None, search_word=""): ...@@ -47,7 +47,7 @@ def reptile(browser=None, search_word=""):
# 组装数据 # 组装数据
obj = { obj = {
"title": title, "title": title,
"content": f'<video src="{file_http_src}"></video>', "content": f"<video src='{file_http_src}'></video>",
"videoUrl": file_http_src, "videoUrl": file_http_src,
"link": link, "link": link,
"reptileTime": str(int(time.time())), "reptileTime": str(int(time.time())),
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment