为什么不在mongodb中保存文件内容

时间:2012-07-09 23:44:10

标签: node.js express mongoose

我正在使用express 2.5.8和mongoose 2.7.0。这是我的文档架构。它的集合是我想要存储与事务关联的文件(特别是在内容字符串中):

var documentsSchema = new Schema({
    name            :    String,
    type            :    String,
    content         :    String,    
    uploadDate      :    {type: Date, default: Date.now}
});

这是我的交易模式的一部分:

var transactionSchema = new Schema({
    txId            :    ObjectId,
    txStatus        :    {type: String, index: true, default: "started"},
    documents       :    [{type: ObjectId, ref: 'Document'}]
});

我正用于将文档保存到事务的快速函数:

function uploadFile(req, res){
    var file = req.files.file;
    console.log(file.path);
    if(file.type != 'application/pdf'){
        res.render('./tx/application/uploadResult', {result: 'File must be pdf'});
    } else if(file.size > 1024 * 1024) {
        res.render('./tx/application/uploadResult', {result: 'File is too big'});
    } else{
        var document = new Document();
        document.name = file.name;
        document.type = file.type;
        document.content = fs.readFile(file.path, function(err, data){
            document.save(function(err, document){
                if(err) throw err;
                Transaction.findById(req.body.ltxId, function(err, tx){
                    tx.documents.push(document._id);
                    tx.save(function(err, tx){
                        res.render('./tx/application/uploadResult', {result: 'ok', fileId: document._id});
                    });
                });
            });
        });
    }
}

创建事务没有任何问题。并且文档记录被创建,一切都被设置但内容。

为什么内容没有设置? fs.readFile将文件作为缓冲区返回,没有任何问题。

2 个答案:

答案 0 :(得分:1)

变化:

    document.content = fs.readFile(file.path, function(err, data){

要:

    fs.readFile(file.path, function(err, data){
       document.content = data;

请记住,readFile是异步的,因此在调用回调之前内容不可用(tipoff应该是你没有使用data参数)。

答案 1 :(得分:0)

而不是像@ebohlman建议的那样使用异步调用进入路径, 您也可以使用同步调用来获取文件内容。

javascript document.content = fs.readFileSync(file.path)