目前有没有node 支持utf 8字符的二维码库?
在npm上面找到这个目前用得最多人的库… https://github.com/soldair/node-qrcode
然后搞了接近一个上午,都折腾不出如何支持utf8 字符,有没有人搞过,求分享啊…
8 回复
你把字符转转为base64编码,不就可以了吗
好办法!!!
不过容量就歇菜了…10来个字就读不出来…
@youxiachai 2维码容易是多少字节呢
我联系qrcode 的作者,然后…支持utf 8 了…
这个repo的作者的发型真不是一般的牛
have a try 但是他不支持中文,:( 可以通过以下方法转码:
function utf16to8(str) {
var out, i, len, c;
out = "";
len = str.length;
for(i = 0; i < len; i++) {
c = str.charCodeAt(i);
if ((c >= 0x0001) && (c <= 0x007F)) {
out += str.charAt(i);
} else if (c > 0x07FF) {
out += String.fromCharCode(0xE0 | ((c >> 12) & 0x0F));
out += String.fromCharCode(0x80 | ((c >> 6) & 0x3F));
out += String.fromCharCode(0x80 | ((c >> 0) & 0x3F));
} else {
out += String.fromCharCode(0xC0 | ((c >> 6) & 0x1F));
out += String.fromCharCode(0x80 | ((c >> 0) & 0x3F));
}
}
return out;
}
抛一个我们用的小众的: