我做了一个小小的拼图模拟here。
170个单元格的开/关状态(一些对用户不可见)存储在一个数组中,为了能够重新创建特定的配置,我在页面底部显示数组的内容,然后可以作为URL参数放入,以在页面加载like so.
时“设置”特定配置我的问题是数组的输出是一个170位的二进制数,这相当麻烦!
我尝试使用
parseInt(input,2).toString(30)
和
parseInt(input,30).toString(2)
作为一种简单地将这个170位二进制数转换为更细微的字母数字格式(然后再由我的“设置”初始化程序读取)的方法,但据我所知,我正在处理的数字是太大了,不适合这种功能。
我的下一个想法是,我可以将170位数字拆分成可以被功能消化的部分,但是当我确信这种转换必须非常普遍时,这似乎有点像重新发明轮子而且有人能够让我直截了当地谈论“正确”的方式。
提前致谢!
答案 0 :(得分:0)
你的想法是正确的,只是JavaScript无法准确地表示那么大的数字。当您使用parseInt
将其转换为JavaScript编号时,您的170位数字会失去准确性;它并不是一点一点地代表原始数字。
解决方案很简单:滚动你自己的数字解析函数,以较小的块处理170位数。
function encode(a) {
var b = "";
while (a.length > 0) {
b = parseInt(a.slice(-5), 2).toString(32) + b;
a = a.slice(0, -5);
}
return b;
}
function decode(a) {
var b = "";
while (a.length > 0) {
b = ("00000" + parseInt(a.slice(-1), 32).toString(2)).slice(-5) + b;
a = a.slice(0, -1);
}
return b;
}
var s = "00000000000000010101110100001010100010000111011101000010101000100001010111011100000000000000010001110010001000101001000100010100100010001010000001110111001000000000000000";
var e = encode(s); // "000lq2k8et1a45es002748kh2i4a0tp000"
var d = decode(e); // d === s
更一般的功能:
function convert(string, base1, base2) {
var result = "",
chunkw = 0, // number of characters to write per chunk
chunkr = 0, // number of characters to read per chunk
padstr = "", // string of zeros for padding the write chunks
slice;
while (Math.pow(2, chunkw) < base1) chunkw += 1;
while (Math.pow(2, chunkr) < base2) chunkr += 1;
while (padstr.length < chunkw) padstr += "0";
while (string.length > 0) {
slice = string.slice(-chunkr);
slice = parseInt(slice, base1).toString(base2);
slice = (padstr + slice).slice(-chunkw);
result = slice + result;
string = string.slice(0, -chunkr);
}
return result;
}
var x = "00000000000000010101110100001010100010000111011101000010101000100001010111011100000000000000010001110010001000101001000100010100100010001010000001110111001000000000000000";
var a = convert(x, 2, 32);
var b = convert(a, 32, 2);
console.log(x + "\n" + a + "\n" + b);
// 00000000000000010101110100001010100010000111011101000010101000100001010111011100000000000000010001110010001000101001000100010100100010001010000001110111001000000000000000
// 000lq2k8et1a45es002748kh2i4a0tp000
// 00000000000000010101110100001010100010000111011101000010101000100001010111011100000000000000010001110010001000101001000100010100100010001010000001110111001000000000000000