gpt4 book ai didi

node.js - 如何通过 Express Route 使用 Mongoose-Crate 存储文件

转载 作者:可可西里 更新时间:2023-11-01 09:57:55 26 4
gpt4 key购买 nike

我正在使用 Node + Express 4 + MongoDB + Mongoose 构建一个 RESTful API。

我的 API 需要做的一件事是存储和检索文件。我将存储在 Amazon S3 中。 Mongoose 有一个特定的插件,用于将文件附加到 Mongo 文档,称为 Mongoose-Crate ,它又有一个存储提供程序 Mongoose-Crate-S3将文件上传到 S3。

我已尽最大努力调整 Mongoose-Crate-S3 npm 页面中的示例代码以用作快速路由,但到目前为止我还没有获得成功上传到我的 S3 存储的图像。我的"file"模型的文档正在我的 mongo 数据库中创建,但只有“_id”和“__v”字段。没有“标题”,没有“描述”,没有任何迹象表明 .post 端点实际上正在接收我尝试发布的文件。我一直在对我的代码进行细微的调整,但我通常会收到一些关于“无法获得任何响应”的变化。

这是我的 mongoose 模式 file.js(当然删除了我的 S4 凭据)

var mongoose = require('mongoose');
var Schema = mongoose.Schema;
var crate = require('mongoose-crate');
var S3 = require('mongoose-crate-s3');

var FileSchema = new Schema({
title: String,
description: String
});

FileSchema.plugin(crate, {
storage: new S3({
key: '<api-key-here>',
secret: '<secret-here>',
bucket: '<bucket-here>',
acl: '<acl-here>', // defaults to public-read
region: '<region-here>', // defaults to us-standard
path: function(attachment) { // where the file is stored in the bucket - defaults to this function
return '/' + path.basename(attachment.path)
}
}),
fields: {
file: {}
}
});

module.exports = mongoose.model('File', FileSchema);

这是我的 api 路由文件的相关片段。我相当确定我需要修复的代码在此处。

apiRouter.route('/files')

.post(function(req, res){

var file = new File()

//.attach = function(field, attachment, callback)
file.attach('image', req.body, function(error) {
// file is now uploaded and post.file is populated e.g.:
// post.file.url
})

})

.get(function(req, res){
//get a list of all files goes here
});

我完全希望我遗漏了一些明显的东西,但是 MEAN 堆栈编程对我来说是新的,并且我已经搜索了 stackoverflow 和整个网络以寻找更多示例或任何可以暗示我遗漏了什么的东西。请帮忙!

最佳答案

首先,您应该设置您希望文件在 S3 上保存的位置路径,目前在该示例中它使用与原始文件相同的路径(可以是 /var/tmp/y7sday...C:/Users/SomeGuy/Pictures/..) 所以我们需要先解决这个问题。

在我的代码中,我使用与他们提供的文件相同的名称,在生产中,您可能希望按日期对这些文件进行排序并向它们添加一个随机 uuid。 full example

FileSchema.plugin(crate, {
storage: new S3({
key: process.env.KEY,
secret: process.env.SECRET,
bucket: process.env.BUCKET,
acl: 'public-read', // defaults to public-read
region: 'eu-west-1', // defaults to us-standard
path: function(attachment) { // where the file is stored in the bucket - defaults to this function
return '/' + attachment.name
}
}),
fields: {
file: {}
}
});

接下来,在您的 API 端点中,您希望在正文中包含任何表单信息并将这些信息添加到对象中,这些将位于 req.body 部分。

这里要注意的最重要的事情是我已经将附件设置为 file,这需要与您在 mongoose 模式中声明的字段相匹配,否则它将消失。

接下来将 req.files.file 作为第二个参数。 full example

exports.create = function (req, res) {
var file = new File();
file.title = req.body.title;
file.description = req.body.description;
file.attach('file', req.files.file, function (error) {
if (error) {
return res.send(error);
} else {
return res.send(file);
}
});
};

我已经将我的作品上传到 GitHub , 所以请克隆它并尝试一下。

您需要做的就是POST到/file/

{
"description": "My Description",
"title": "My Title",
"file": {
"url": "https://mysecretbucket.s3-eu-west-1.amazonaws.com/bb4bf9f69bf41ab478824d80a338beb6.png",
"type": "image/png",
"name": "bb4bf9f69bf41ab478824d80a338beb6.png",
"size": 8912
},
"_id": "553e8ed8282cc30000000001"
}

确保将表单中的字段设置为 file,如下图所示

enter image description here

关于node.js - 如何通过 Express Route 使用 Mongoose-Crate 存储文件,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/29859490/

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