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