带json数据的strip_tags出错了

发布于 2024-12-14 18:29:08 字数 424 浏览 0 评论 0原文

当我在json数据的rails中使用strip_tags剥离html标签时,它返回错误的数据:

the original data is: "<p><em><span style=\"font-size: 96px; \">test</span></em></p>"
data.to_json is: "\"<p><em><span style=\\\"font-size: 96px; \\\">\\u9ed1\\u4f53\\u5b57\\u54e6</span></em></p>\""
the stripped data that after strip_tags is: "\""

谁能告诉我原因或其他解决方案?

When I strip html tags with strip_tags in rails of the json data,it returns the wrong data:

the original data is: "<p><em><span style=\"font-size: 96px; \">test</span></em></p>"
data.to_json is: "\"<p><em><span style=\\\"font-size: 96px; \\\">\\u9ed1\\u4f53\\u5b57\\u54e6</span></em></p>\""
the stripped data that after strip_tags is: "\""

Who can tell me the reason or other solutions?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

戏剧牡丹亭 2024-12-21 18:29:22

将顺序更改为:

strip_tags(data).to_json

您将按预期得到“test”。

原因是 html 扫描仪(由 strip_tags 使用)剥离了编码的“测试”值。

Change the order to :

strip_tags(data).to_json

You will get "test" as expected.

The reason is being html-scanner (used by strip_tags) strips the encoded "test" value.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文