标签: node.js
我有一个名为data的var,它本质上是一个字符串。我想将它编码为base 64,我做了:
data = new Buffer(data).toString('base64');
但它变成了AAAA。我该如何解决这个问题?