使用nodejs

时间:2017-09-05 05:17:19

标签: javascript html node.js mongodb image

我能够在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我如何上传另一个图像路径。

1 个答案:

答案 0 :(得分:1)

使用$ push存储数组中的路径

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

});