我刚开始研究MEAN堆栈,我遇到了一个非常微不足道的问题。我使用下面的代码使用mongoose创建了一个模型:
var mongoose = require('mongoose');
var axisData = mongoose.Schema({ xaxis:String, yaxis:String });
module.exports = mongoose.model('AxisData',axisData);
我正在尝试使用以下代码保存上述模型:
var axisDataModel = require('../models/models');
其中" ../ models / models"是存储上述定义模型的位置。
module.exports.saveAxisData=function(req,res){
var axisData=new axisDataModel(req.body);
axisData.save(function(err){
if(err)
console.log(err);
else
console.log(todo);
});
};
但不幸的是,save()内部的回调永远不会被调用。无论我提到哪个网站,都说了同样的话。谁能帮我?