带json数据的strip_tags出错了
当我在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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
将顺序更改为:
您将按预期得到“test”。
原因是 html 扫描仪(由 strip_tags 使用)剥离了编码的“测试”值。
Change the order to :
You will get "test" as expected.
The reason is being html-scanner (used by strip_tags) strips the encoded "test" value.