1

JavaScript中,我如何解码使用 C# 编码的字符串HttpServerUtility.UrlTokenEncode

其他语言中有一些等价物,但我无法用 JS 重写它们。任何帮助,将不胜感激。

这是Java版本。

这是Objective-C版本。

更新:

CSURLTokenEncode与 base64 编码不同。例如,最后一个字符始终是填充字符的数量。所以有些字符需要正确替换。Java 和 Objective-C 版本的代码显示哪些字符需要替换为什么。

我试过decodeURIComponent了,但没有成功解码。这是有道理的,因为字符串是由特定方法编码的。它不是base64。

例如,这只是 C#UrlTokenEncode字符串的一部分:

vj4_fv7__7-_Pr6-ff3_Pr6_vz8_________________f____79_vP1_vb3_vz8____________________AAA1

这是使用 Objective-C/Java 方法的正确解码版本:

vj4/fv7//7+/Pr6+ff3/Pr6/vz8/////////////////f////79/vP1/vb3/vz8////////////////////AAA=

4

4 回答 4

2

我终于设法将Jeffrey ThomasObjective-c 版本转换为JavaScript,并且成功了。URLTokenDecode

这是功能:

function URLTokenDecode(token) {

    if (token.length == 0) return null;

    // The last character in the token is the number of padding characters.
    var numberOfPaddingCharacters = token.slice(-1);

    // The Base64 string is the token without the last character.
    token = token.slice(0, -1);

    // '-'s are '+'s and '_'s are '/'s.
    token = token.replace(/-/g, '+');
    token = token.replace(/_/g, '/');

    // Pad the Base64 string out with '='s
    for (var i = 0; i < numberOfPaddingCharacters; i++)
        token += "=";

    return token;
}

如果你使用 AngularJS,这里是 $filter:

app.filter('URLTokenDecode', function () {
        return function (token) {

            if (token.length == 0) return null;

            // The last character in the token is the number of padding characters.
            var numberOfPaddingCharacters = token.slice(-1);

            // The Base64 string is the token without the last character.
            token = token.slice(0, -1);

            // '-'s are '+'s and '_'s are '/'s.
            token = token.replace(/-/g, '+');
            token = token.replace(/_/g, '/');

            // Pad the Base64 string out with '='s
            for (var i = 0; i < numberOfPaddingCharacters; i++)
                token += "=";

            return token;
        }

});
于 2015-08-18T10:25:29.720 回答
0

我想那将是 decodeuricomponent:
http ://www.w3schools.com/jsref/jsref_decodeuricomponent.asp

要在 JavaScript 中解码 UTF8-base64 编码的字符串:

var str2 = decodeURIComponent(escape(window.atob(b64)));
console.log(str2);

要在 JavaScript 中这样编码 UTF8-JavaScript-string:

var str = "äöüÄÖÜçéèñ";
var b64 = window.btoa(unescape(encodeURIComponent(str)))
console.log(b64);

似乎 UrlTokenDecode 有点复杂。
100% 确定的最佳方法是使用 AJAX 在服务器端调用 UrlTokenDecode,然后返回一个简单的 base64 编码字符串。

public static byte[] UrlTokenDecode (string input)
{
    if (input == null)
        throw new ArgumentNullException ("input");
    if (input.Length < 1)
        return new byte[0];
    byte[] bytes = Encoding.ASCII.GetBytes (input);
    int inputLength = input.Length - 1;
    int equalsCount = (int)(((char)bytes[inputLength]) - 0x30);
    char[] ret = new char[inputLength + equalsCount];
    int i = 0;
    for (; i < inputLength; i++) {
        switch ((char)bytes[i]) {
            case '-':
                ret[i] = '+';
                break;

            case '_':
                ret[i] = '/';
                break;

            default:
                ret[i] = (char)bytes[i];
                break;
        }
    }
    while (equalsCount > 0) {
        ret[i++] = '=';
        equalsCount--;
    }

    return Convert.FromBase64CharArray (ret, 0, ret.Length);
}

资源

于 2015-08-18T08:30:45.600 回答
0

这可能违反了发布规则,因为它不是问题的答案,但是,我在寻找UrlTokenEncode方法(不是解码)时找到了这个页面,所以使用这里的信息我做了以下方法,我希望可以帮助其他人:

function urlTokenEncode(str) {
    var b64 = btoa(encodeURIComponent(str).replace(/%([0-9A-F]{2})/g,
            function(match, t) {
                return String.fromCharCode('0x' + t);
            })),
        padChars = b64.match(/=/g);
    return b64.replace(/=/g, "") + (padChars == null ? 0 : padChars.length);
}

经过测试并使用 C#HttpServerUtility.UrlTokenEncodeHttpServerUtility.UrlTokenEncode

于 2017-09-08T12:53:48.267 回答
-1

阅读 MDN 中描述问题和解决方案的这篇文章:

https://developer.mozilla.org/en-US/docs/Web/API/WindowBase64/Base64_encoding_and_decoding

function b64EncodeUnicode(str) {
    return btoa(encodeURIComponent(str).replace(/%([0-9A-F]{2})/g, function(match, p1) {
        return String.fromCharCode('0x' + p1);
    }));
}

b64EncodeUnicode('✓ à la mode'); // "4pyTIMOgIGxhIG1vZGU="
于 2015-08-18T08:30:58.713 回答