"foo'bar%22%20baz" 最佳答案 出于同样的原因,它不会转义 ? 或 / 或 -6ren">
gpt4 book ai didi

ruby - 为什么 URI.escape 不转义单引号?

转载 作者:数据小太阳 更新时间:2023-10-29 06:41:29 25 4
gpt4 key购买 nike

为什么 URI.escape 不转义单引号?

URI.escape("foo'bar\" baz")
=> "foo'bar%22%20baz"

最佳答案

出于同样的原因,它不会转义 ?/: 等等。 URI.escape() 仅转义不能在 URL 中使用的字符根本,而不转义具有特殊含义的字符。

您要找的是CGI.escape() :

require "cgi"
CGI.escape("foo'bar\" baz")
=> "foo%27bar%22+baz"

关于ruby - 为什么 URI.escape 不转义单引号?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/7731919/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com