在 JavaScript 中转义 HTML 字符以进行页面输出时出现问题
有人告诉我,在将 HTML 字符输入数据库之前对其进行转义是一个坏主意,因此我一直在修改我的代码,以便在不转义的情况下存储原始输入。现在我在将数据输出到网页上时遇到问题。
在 PHP 中,我使用 htmlentities() 进行输出,它工作正常,但我使用 AJAX 来检索数据,因此必须使用 JavaScript 进行输出。
我尝试过在 JS 中使用 escape() 函数,但我的输出没有正确输出。我用来测试的示例文本是:
一、二、&三
我知道这是 & 符号导致问题,所以我的第一个问题是 - 如何使用 JS 来转义输出?当我删除它时,我得到:
One,%20,two,%20third
...所以我的第二个问题是,我在这里做错了什么?
有什么想法吗?我相信这对你们很多人来说都很简单。
I was told that escaping HTML characters before entering them into a DB is a bad idea, so I have been modifying my code so that the raw input is stored without escaping. Now I am having a problem outputting the data onto a web page.
In PHP, I use htmlentities() for my output and it works fine, but I am using AJAX to retrieve my data, and thus have to output using JavaScript.
I have tried using the escape() function in JS but my output is not coming out properly. The sample text that I am using to test is:
One, two, & three
I know that it is the ampersand causing issues so my first question is - how do I escape this for output using JS? When I remove it, I get this:
One,%20,two,%20three
... so my second question is, what am I doing wrong here?
Any ideas? I'm sure this is simple for many of you.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
(因为它似乎对您有帮助,我会将其作为正确的答案)
如果您使用 Ajax,您仍然可以使用
htmlentities()
。只需将其用于服务器上生成的响应,就像返回 HTML 一样。没有什么区别。(as it seems to have helped you, I will put it as a proper answer)
You can still use
htmlentities()
if you use Ajax. Just use it for the response that is generated on the server, like you would if you returned HTML. There is no difference.