0

我正在使用 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'}]
});

还有我用来将文档保存到事务中的 express 函数:

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 将文件作为缓冲区返回,没有任何问题。

4

2 回答 2

1

改变:

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

至:

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

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

于 2012-07-10T00:50:52.290 回答
0

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

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

于 2015-02-12T17:55:42.180 回答