将 json 对象存储到 Azure blob 存储

2023-12-25

有没有办法存储 json 对象而不将其转换为流?我可以将其转换为流后上传。但是是否有任何方法可以将对象存储为 {something}.json 而不将其转换为流?

我现在应该做什么

const azureStorage = require('azure-storage');
const blobService = azureStorage.createBlobService(accountName, accountKey);
var Readable = require('stream').Readable
var msg = {
   a: "something",
   b: "anotherthing"
}
var stream = new Readable
stream.push(JSON.stringify(msg))
stream.push(null)
var option = {
   contentSettings: {contentType: 'application/json'}
}
stream.pipe(blobService.createWriteStreamToBlockBlob('container', 'something.json', option, function onResponse(error, result) {
  console.log("done")
}));

有没有更好的办法?


当然,您可以使用以下方式发送文本从文本创建块blob https://learn.microsoft.com/en-us/javascript/api/azure-storage/azurestorage.services.blob.blobservice.blobservice?view=azure-node-latest#createblockblobfromtext像这样:

blobService.createBlockBlobFromText(
    'container', 
    'something.json',
    JSON.stringify(msg) 
    option, 
    function onResponse(error, result) {
        console.log("done")
    });
本文内容由网友自发贡献,版权归原作者所有,本站不承担相应法律责任。如您发现有涉嫌抄袭侵权的内容,请联系:hwhale#tublm.com(使用前将#替换为@)

将 json 对象存储到 Azure blob 存储 的相关文章

随机推荐