2

再会!我想知道为什么我不能使用 atob 或 btoa 或 $.base64.decode() 等自定义公式在 javascript 中解码 base64 响应。

这就是我在 php 中所拥有的

$res = "Это тескт";
echo base64_decode($res);

这就是我在 jquery 中所拥有的

$.ajax({
type: "GET",
url: "request.php",
success: function(data){
$('#elementid').html($.base64.decode(data));
//or $('#elementid').html(atob(data)); // it gives the same result as the above one.

在页面上,我看到以下内容

ЭÑо ÑеÑкÑ

Base64 编码数据如下所示

0K3RgtC+INGC0LXRgdC60YI=

如果我尝试使用从 BASE64 到 UTF-8 的不同 Web 工具进行解码,我会看到正确的结果,但在使用上述功能的页面上却看不到。请建议。

更新:@logic-unit 感谢您的建议。我忘了提到生成的页面 index.php 在标题中有以下内容

<?php
header('Content-Type: text/html; charset=utf-8');
?>
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
...
</head>
4

2 回答 2

0

听起来像是您页面上的字符编码问题。

确保您在 HTML 头部的元标记中指定了正确的编码类型。

http://www.w3.org/International/questions/qa-html-encoding-declarations

于 2013-10-03T14:48:50.617 回答
0

我找到了这个问题的答案。似乎 atob 和 btoa 处理 UTF-8 编码很糟糕。

它在“Unicode 问题”部分的https://developer.mozilla.org/en-US/docs/Web/JavaScript/Base64_encoding_and_decoding 解决方案 2中有描述,对我来说效果很好。

解决方案 #2 – 使用 TypedArrays 和 UTF-8 重写 atob() 和 btoa()

于 2013-10-07T10:41:20.010 回答