我尝试将缓存(从表单上传的文件)保存到Google云端存储,但似乎Google Node SDK只允许上传具有给定路径的文件(读/写流) )。
这是我用于AWS(S3)的内容 - Google节点SDK中的其他类似内容是什么?:
var fileContents = new Buffer('buffer');
var params = {
Bucket: //bucket name
Key: //file name
ContentType: // Set mimetype
Body: fileContents
};
s3.putObject(params, function(err, data) {
// Do something
});
到目前为止我找到的唯一方法是将缓冲区写入磁盘,使用SDK上传文件(指定新文件的路径),然后在文件上传成功后删除该文件 - 这样做的缺点是整个过程显着慢,到使用Google存储似乎不可行的地方。是否有任何工作/方式上传缓冲区?
答案 0 :(得分:6)
这实际上很简单:
let remotePath = 'some/key/to/store.json';
let localReadStream = new stream.PassThrough();
localReadStream.end(JSON.stringify(someObject, null, ' '));
let remoteWriteStream = bucket.file(remotePath).createWriteStream({
metadata : {
contentType : 'application/json'
}
});
localReadStream.pipe(remoteWriteStream)
.on('error', err => {
return callback(err);
})
.on('finish', () => {
return callback();
});
答案 1 :(得分:6)
.save
保存一天!下面一些代码保存了我创建的“ pdf”。
https://googleapis.dev/nodejs/storage/latest/File.html#save
const { Storage } = require("@google-cloud/storage");
const gc = new Storage({
keyFilename: path.join(__dirname, "./path to your service account .json"),
projectId: "your project id",
});
const file = gc.bucket(bucketName).file("tester.pdf");
file.save(pdf, (err) => {
if (!err) {
console.log("cool");
} else {
console.log("error " + err);
}
});
答案 2 :(得分:2)
以下代码段来自google示例。该示例假定您使用了multer或类似的东西,并且可以在req.file
访问该文件。您可以使用类似于以下内容的中间件将文件流式传输到云存储:
function sendUploadToGCS (req, res, next) {
if (!req.file) {
return next();
}
const gcsname = Date.now() + req.file.originalname;
const file = bucket.file(gcsname);
const stream = file.createWriteStream({
metadata: {
contentType: req.file.mimetype
},
resumable: false
});
stream.on('error', (err) => {
req.file.cloudStorageError = err;
next(err);
});
stream.on('finish', () => {
req.file.cloudStorageObject = gcsname;
file.makePublic().then(() => {
req.file.cloudStoragePublicUrl = getPublicUrl(gcsname);
next();
});
});
stream.end(req.file.buffer);
}
答案 3 :(得分:1)
我有这种方法:
const destFileName = `someFolder/${file.name}`;
const fileCloud = this.storage.bucket(bucketName).file(destFileName);
fileCloud.save(file.buffer, {
contentType: file.mimetype
}, (err) => {
if (err) {
console.log("error");
}
});