AS3将正斜杠转换为URL编码字符%2F

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了AS3将正斜杠转换为URL编码字符%2F相关的知识,希望对你有一定的参考价值。

In AS2 forward slashes got url-encoded to %2F when you escaped them. But in AS3 they get ignored and left as they are. In some situations I have found that this can cause problems. So you can do it manually using this regular expression.
  1. var myString:String = "/";
  2. trace(myString);
  3. var urlEncodeForwardSlashedRegExp:RegExp = new RegExp("/", "gi");
  4. myString = myString.replace(urlEncodeForwardSlashedRegExp, "%2F");
  5. trace(myString);
  6.  
  7. // OUTPUT
  8. // /
  9. // %2F

以上是关于AS3将正斜杠转换为URL编码字符%2F的主要内容,如果未能解决你的问题,请参考以下文章

斜杠 ("/") 是不是等同于 HTTP URL 路径部分中的编码斜杠 ("%2F")

python urlencode() 反斜杠处理问题

Url的参数转变成json

使用转义字符输出正确的网址

在页面加载时将正斜杠附加到url的末尾

springboot中URL带有斜杠的转义字符百分之2F导致的400错误