31

我正在使用 Javascript 方法decodeURIComponent来解码编码的 URL。现在我遇到了一个问题,有时在服务器之间的重定向期间 URL 会被编码两次,有时它只被编码一次。

我想检查调用方法后 URL 是否仍然被编码decodeURIComponent。我怎样才能做到这一点?任何指针都会对我很有帮助。

更新 - 1

如果我递归调用一个方法并检查给定的 URL 是否仍然包含“%”,如果它包含“%”,则对其进行解码并再次调用该方法;如果不将其返回给调用者,那会起作用吗?

更新 - 2

对于我的情况,我有:

callBackUrl=http%253A%252F%252Fadbc.com%252FPOSM%252Fapp%252Fpages%252Fadf.task-flow%253Fadf.tfDoc%253D%25252FWEB-INF%25252Ftask-flows%25252Fcatalog-edit-task-flow.xml%2526adf.tfId%253Dcatalog%2526_adf.ctrl-state%253Db9akorh22_9%2526articleReference%253D10C00135%2526previousView%253Dcatalog-home%2526fromUCM%253Dtrue%2526articleType%253Dposm%2526developer%253Dcentral

现在我在我的 js 方法中获取 callBackUrl 的值,然后对其进行解码并window.open()使用解码后的 URL 触发。参数是相同的,它有:

  • adf.tfDoc
  • adf.tfId
  • 文章参考
  • 以前查看
  • 来自UCM
  • 文章类型
  • 开发商

参数进去。所以我知道没有像value="%..".

更新 - 3

我写了以下方法:

var decodeURLRecursively = function(url) {
    if(url.indexOf('%') != -1) {
        return decodeURLRecursively(decodeURIComponent(url));
    }

    return url;
}
4

5 回答 5

43

有一种简单的方法可以知道 URL 字符串是否已编码。

取初始字符串并将其与解码结果进行比较。如果结果相同,则不编码字符串;如果结果不同,则对其进行编码。

我的网址有这个问题,我使用了这个功能:

function isEncoded(uri) {
  uri = uri || '';

  return uri !== decodeURIComponent(uri);
}

所以现在我可以isEncoded在 while 循环(或递归)中使用判别式来了解我是否需要继续调用decodeURIComponent字符串:

function fullyDecodeURI(uri){

  while (isEncoded(uri)){
    uri = decodeURIComponent(uri);
  }

  return uri;
}

这解决了我解码多次编码的 url 的问题。希望这可以帮助。

于 2016-07-08T11:07:22.800 回答
12

重复解码直到你发现没有任何%迹象将在 99% 的时间内工作。只要/%[0-9a-f]{2}/i能找到匹配项,如果您反复调用它,效果会更好。

但是,如果我(出于某种奇怪的原因)命名一个文件100%achieved,那会导致问题,因为%ac会被解码为¬,导致解码失败。不幸的是,没有办法检测到这种情况。

理想情况下,您应该知道某些内容是否被多次编码,并且最好一开始就不应该让它发生。

于 2013-07-10T07:53:22.703 回答
1
function checkEncodeURI(str) {
 return /\%/i.test(str)
}

测试 :

let url1 = "https://quora.com/unanswered/I’m-looking-for-a-Freaks-And-Friends-Fox-Glitter-Face-Hinge-Wallet-for-a-Christmas-gift-I’ve-searched-for-hours-online-but-no-one-seemed-to-have-it-does-anyone-know-where-I-can-find-one"
let url2 = 'https://www.quora.com/unanswered/I%E2%80%99m-looking-for-a-Freaks-And-Friends-Fox-Glitter-Face-Hinge-Wallet-for-a-Christmas-gift-I%E2%80%99ve-searched-for-hours-online-but-no-one-seemed-to-have-it-does-anyone-know-where-I-can-find-one'
let a = checkEncodeURI(url1)
console.log(a)
let b = checkEncodeURI(url2)
console.log(b)
于 2018-01-23T04:56:35.013 回答
1

您可以继续解码,直到字符串没有改变:

str = "xxxxxxx"
dec_str = decode(str)
while(dec_str != str)
     str = dec_str;
     dec_str = decode(str);
于 2018-04-10T08:18:52.013 回答
0

确实有一种简单、快速且值得信赖的方法来了解 URL 字符串是否已编码。

例如: decodeURIComponent(decodeURIComponent(encodeURIComponent("SWQgPSA0NjI%3D"))) <> "SWQgPSA0NjI=" ----> 不等于原始值然后已经编码

只是这段代码:

  var encValue = encodeURIComponent(Value);
    try {
         if (decodeURIComponent(decodeURIComponent(encValue)) === Value) {
          //not encodec yet...so return encoded of val
          return encValue;
         }
       } catch (err) {
           //not encodec yet...so return encoded of val
           return encValue;
       }

 return Value  //same value returned

                        
于 2020-12-15T06:28:29.300 回答