node如何 response byte 数据
原数据( json ):{"id":1010,"na":"zhangsan"}
转成 byte:[123 34 105 100 34 58 49 48 49 48 44 34 110 97 109 101 34 58 34 229 188 160 228 184 137 34 125]
现在想直接通过 http 的方式将 byte send 出去,好像不行啊? 用 golang 和 node.js 分别试了下,最后 send 出去的文件打开之后就直接变成了原 json 串了
付代码:
let b = new Buffer(`{"id":1010,"na":"zhangsan"}`)
response.send(b)