Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我正在使用 TinyMce 所见即所得的文本编辑器。我可以按预期将文本发送到服务器。出乎意料的是,webbrowser 并没有很好地渲染它。保存在服务器中的文本是这样的:
"<p>this is my content</p>"
好的!当我渲染它时,
<p>this is my content</p>
在浏览器中可以看到。我确信它背后有非常小的事情,我现在不知道。我将内容保存在 MySql 数据库中并进行简单的 ajax 调用来呈现文本。
您需要<p>this is my content</p>在服务器端解码,它可以防止来自您网站的恶意攻击代码
<p>this is my content</p>