企业🤖AI智能体构建引擎,智能编排和调试,一键部署,支持私有化部署方案 广告
## 方法一: ### 文档说明 > 将html有实体字符转化为html ``` HtmlEncode() ``` ### 代码 ```js function HtmlEncode(text) { return text .replace(/&/g, "&") .replace(/\"/g, '"') .replace(/</g, "<") .replace(/>/g, ">"); } ``` ## 方法二: ``` export const removeHtmltag = (str) => { return str.replace(/<[^>]+>/g, '') } ```