数据未从 node.js 保存在 MongoDB 中
Posted
技术标签:
【中文标题】数据未从 node.js 保存在 MongoDB 中【英文标题】:Data not getting saved in the MongoDB from node.js 【发布时间】:2016-03-31 23:21:48 【问题描述】:我想使用 node.js 和 mongodb 创建其余的 api 我正在输入所有详细信息并尝试将其存储在 mongodb 数据库中。
// call the packages we need
var express = require('express');
var bodyParser = require('body-parser');
var app = express();
var morgan = require('morgan');
// configure app
app.use(morgan('dev')); // log requests to the console
// configure body parser
app.use(bodyParser.urlencoded( extended: true ));
app.use(bodyParser.json());
var port = process.env.PORT || 8080; // set our port
var mongoose = require('mongoose');
// mongoose.connect('mongodb://node:node@novus.modulusmongo.net:27017/Iganiq8o'); // connect to our database
mongoose.connect('mongodb://localhost:27017');
var Bear = require('./app/models/bear');
// create our router
var router = express.Router();
// middleware to use for all requests
router.use(function(req, res, next)
// do logging
console.log('Something is happening.');
next();
);
// test route to make sure everything is working (accessed at GET http://localhost:8080/api)
router.get('/', function(req, res)
res.json( message: 'hooray! welcome to our api!' );
);
// on routes that end in /bears
// ----------------------------------------------------
router.route('/bears')
// create a bear (accessed at POST http://localhost:8080/bears)
.post(function(req, res)
var bear = new Bear(); // create a new instance of the Bear model
bear.name = req.body.name; // set the bears name (comes from the request)
bear.email= req.body.email; // set the bears email(comes from the request)
bear.save(function(err)
if (err)
res.send(err);
res.json( message: 'Bear created!' );
);
)
// get all the bears (accessed at GET http://localhost:8080/api/bears)
.get(function(req, res)
Bear.find(function(err, bears)
if (err)
res.send(err);
res.json(bears);
);
);
// on routes that end in /bears/:bear_id
// ----------------------------------------------------
router.route('/bears/:bear_id')
// get the bear with that id
.get(function(req, res)
Bear.findById(req.params.bear_id, function(err, bear)
if (err)
res.send(err);
res.json(bear);
);
)
// update the bear with this id
.put(function(req, res)
Bear.findById(req.params.bear_id, function(err, bear)
if (err)
res.send(err);
bear.name = req.body.name;
bear.save(function(err)
if (err)
res.send(err);
res.json( message: 'Bear updated!' );
);
);
)
// delete the bear with this id
.delete(function(req, res)
Bear.remove(
_id: req.params.bear_id
, function(err, bear)
if (err)
res.send(err);
res.json( message: 'Successfully deleted' );
);
);
// REGISTER OUR ROUTES -------------------------------
app.use('/api', router);
// START THE SERVER
// =============================================================================
app.listen(port);
console.log('Magic happens on port ' + port);
模型如下:-
var mongoose = require('mongoose');
var Schema = mongoose.Schema;
var BearSchema = new Schema(
name: String,
email: String
);
module.exports = mongoose.model('Bear', BearSchema);
我正在尝试将名称和电子邮件保存在 mongodb 数据库中,但只创建 _id 而不是名称、电子邮件。
结果如下:-
[
"_id": "567f1f92db24304013000001",
"__v": 0
,
"_id": "567f2765db24304013000002",
"__v": 0
]
谁能告诉我为什么数据没有保存在数据库中。
请帮忙。
提前致谢。
【问题讨论】:
你能打印 req.body 并展示你得到的东西吗? 其实在代码中已经指定了。 var 熊 = 新熊(); Bear.name = req.body.name;熊.email=req.body.email; 不,我想在你插入之前在你的 post 函数中看到 req.body。 @Zagonine:当我通过 POSTMAN 测试 API 时,我正在创建 Bear,这意味着没有错误,但数据正在存储在数据库中 这是为了确保您从客户端获得正确的字段。 【参考方案1】:我觉得你的 POST 请求不好,所以我做了这个简单的脚本来检查一下:
var XHR = (function()
var _xhr = (function()
try
return new(this.XMLHttpRequest || ActiveXObject)('MSXML2.XMLHTTP.3.0');
catch (e)
)();
return function(method, url, params, callback)
_xhr.onreadystatechange = function()
if (_xhr.readyState == 4)
var _response;
try
_response = JSON.parse(_xhr.response);
catch (e)
_response = _xhr.responseText;
if (_xhr.status != 200)
// catch an error
console.error('error', response);
else
if (callback)
callback(_response);
else
// deal with it
if (!params)
params = JSON.stringify();
else
params = JSON.stringify(params);
_xhr.open(method, url, true);
// just json in this case
_xhr.setRequestHeader("Content-type", "application/json;charset=UTF-8");
_xhr.send(params);
;
)();
在浏览器的控制台中启动它,像这样
XHR('POST','api/bears', name:'yogi', email:'yogi@bears.com', function() console.log(arguments) );
您的记录将被保存。
"_id" : ObjectId("567e875d068748ee5effb6e0"), "email" : "yogi@bears.com" "name" : "yogi", "__v" : 0
长话短说 - 你的代码没问题,你的 POST 不行。
【讨论】:
以上是关于数据未从 node.js 保存在 MongoDB 中的主要内容,如果未能解决你的问题,请参考以下文章
Node.js 到 C++ 客户端:未从 socket.emit 接收消息
Node.js 和 MongoDB:保存集合还是每次都抓取它们?