我的 go 服务器通过 post 请求接收一个 JS 数组,得到这样的数据
我如何将其写入文件?
在 node.js 中我可以这样做:
fs.writeFile(`${dir}/${body.file_name}`, Buffer.from(body.file), { flag: "w" }, function (err) {
if (err) {
console.log(err);
return res.status(200).json({ 'status': 'error' });
}
console.log(`file sucessfully saved to "${dir}${body.file_name}"`);
return res.status(200).json({ 'status': 'ok' });
});
LEATH
相关分类