执行 buf=new Buffer(256); buf2=new Buffer(256); len=buf.write(‘\u00bd+\u00bc=\u00be’,0,encoding=’utf-8’); len2=buf2.write(‘为什么会乱码’,0,encoding=’utf-8’); console.log(len+"bytes "+buf.toString('utf-8’,0,len)); console.log(len2+"bytes "+buf2.toString('utf-8’,0,len2));
结果
$ node bufferTest.js 8bytes ½+¼=¾ 24bytes Ϊʲô������
还有就是我在网页中的中文也是乱码
看过之前的帖子 照做了 还是没有解决问题