gpt4 book ai didi

node.js - 使用 NodeJS 将文件上传到谷歌云存储

转载 作者:搜寻专家 更新时间:2023-10-31 22:33:19 25 4
gpt4 key购买 nike

我的 upload.js 文件包含以下代码:

module.exports = {

up: function () {
const storage = require('@google-cloud/storage');
const fs = require('fs');
const gcs = storage({
projectId: 'MY_PROJECT_ID',
keyFilename: './service-account.json'
});
var bucket = gcs.bucket('MY_BUCKET');

bucket.upload('picture.jpg', function(err, file) {
if (err) throw new Error(err);
});
},
}

它通过终端工作,但我如何在单击表单提交按钮时或仅从不同的文件中调用它?

当我尝试时,它会给我:

Cannot read property 'prototype' of undefined

我是 NodeJs 的新手,我真的不知道该怎么做。
不幸的是,谷歌文档对我没有任何帮助:/

最佳答案

我建议将您的 requires 移到第一行。

const storage = require('@google-cloud/storage');
const fs = require('fs');

module.exports = {
up: function () {
const gcs = storage({
projectId: 'MY_PROJECT_ID',
keyFilename: './service-account.json'
});
const bucket = gcs.bucket('MY_BUCKET');
bucket.upload('picture.jpg', function(err, file) {
if (err) throw new Error(err);
});
},
}

我还会 console.log(storage) 并确认它已定义。

关于node.js - 使用 NodeJS 将文件上传到谷歌云存储,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/48919153/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com