gpt4 book ai didi

javascript - 使用nodejs在mongodb中添加另一个图像路径

转载 作者:行者123 更新时间:2023-11-30 21:11:53 24 4
gpt4 key购买 nike

我可以在 mongodb 中存储图像路径。这里我以数组格式存储图像路径。使用文档 ID 我需要添加另一个图像,即我想将另一个图像路径插入该数组。所以我的问题是如何在 mongodb 中存储另一个图像路径。

我在这里使用 html 文件上传图片。这是我的代码 index.html

<form id="uploadForm"
enctype="multipart/form-data"
action="/api/file"
method="post"
>
<input type="file" name="userFile"/>
<input type="submit" value="Upload File" name="submit">

</form>

这是我的服务器代码 server.js

var express=require('express');
var multer=require('multer');
var bodyParser = require('body-parser');
var Image=require('./models/image');
var Product=require('./models/product');
var mongoose=require('mongoose');
var path = require('path');
var rand;
var urlencodedParser = bodyParser.urlencoded({ extended: false });

var config = require('./config');

mongoose.connect(config.mongoUrl);
var db = mongoose.connection;
db.on('error', console.error.bind(console, 'connection error:'));
db.once('open', function () {
console.log("Connected correctly to server");
});
var app=express();
var ejs = require('ejs')
app.set('view engine', 'ejs')
var storage = multer.diskStorage({
destination: function(req, file, callback) {
callback(null, './public/uploads')
},
filename: function(req, file, callback) {
//callback(null, file.fieldname + '-' + Date.now() + path.extname(file.originalname))
//callback(null, file.originalname)
rand=Date.now() + path.extname(file.originalname);

callback(null, file.fieldname + '-' + rand);

}

})
var upload = multer({
storage: storage});
app.get('/api/file',function(req,res){
res.sendFile('E:/saas/nodejs/uploads/db/views/index.html');
});

app.post('/api/file',upload.single('userFile'), function(req, res) {
console.log(req.file);
console.log(req.file.path);

Image.create({imagePaths:[{imagepath:req.file.path}]},function(err,img){

if (err) throw err;
console.log(img);
console.log('Path created!');
var id = img._id;

res.writeHead(200, {
'Content-Type': 'text/plain'
});
res.end('Added the image path with id: ' + id);
});
})

var route=require('./routes/route');
app.use('/route',route);
app.listen(3000,function(){
console.log("Server listening on 3000");
});

运行服务器后,我将在浏览器中使用它 http://localhost:3000/api/file 使用它我可以上传文件,我将获得 mongodb 文档 ID 作为响应。使用这个 Id 如何上传另一个图片路径。

最佳答案

使用$push将路径存入数组

schemaName.findByIdAndUpdate(
{ req.headers.id },
{ $push: { imagePath: '/newPath' } },
(err,response)=>{
if(err){
console.log(err);
}

});

关于javascript - 使用nodejs在mongodb中添加另一个图像路径,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/46047437/

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