【发布时间】:2023-04-11 05:34:01
【问题描述】:
我正在尝试发布表单数据,但在提交时收到以下错误:
TypeError: 无法在字符串 '{"[object Object]":""}' 上创建属性 '_id'。
我的帖子被成功捕获:
电影{id: "8", firstname: "test", lastname: "test", hero: "test", photo: "xxxxxxxx"}
但是数据没有保存在 MongoDB 中。我正在使用 Angular2 的 MEAN 堆栈。
我的server.js:
//Need to write the Express code
var express = require('express');
var path = require('path');
var bodyParser = require('body-parser');
var indexApi = require('./routes/index');
var movieApi = require('./routes/movie');
var port = 3000;
var app = express();
// parse application/x-www-form-urlencoded
app.use(bodyParser.urlencoded({ extended: false }));
app.use(bodyParser.json());
// parse application/vnd.api+json as json
//app.use(bodyParser.json({ type: 'application/json' }))
app.use('/',indexApi);
// Register the movie.js file
app.use('/api',movieApi);
// View Engine
app.set('views',path.join(__dirname, 'views'));
app.set('view engine','ejs');
app.engine('html',require('ejs').renderFile);
// Set static folder so that our all the things we read from client folder
app.use(express.static(path.join(__dirname,'client')));
app.listen(port,function(){
console.log("Server started at port number : "+ port);
});
我将数据发布如下:
my app.component.ts:
saveDetails(movieObj){
//Note: I am getting the movie object here
this.moviesService.saveMovie(movieObj).
subscribe((data=> this.movieObj = JSON.stringify(data._body);
console.log(this.movieObj);
);
}
and movies.service.ts:
saveMovie(movie){
//Note: I am getting the movie object here also
var headers = new Headers();
headers.append('Content-Type', 'application/x-www-form-urlencoded');
return this.http.post('http://localhost:3000/api/movie',
movie, {
headers: headers});
}
movie.js:
router.post('/movie',function(req,res){
console.log("Under Post call....");
var movieObj= req.body;
// Note: here in the console everthing is comming as undefined thats is the problem
console.log("[_id]"+movieObj._id+"[id]"+movieObj.id+"[firstname]"+movieObj.firstname+"[lastname]"+movieObj.lastname+"[hero]"+movieObj.hero+"[photo]"+movieObj.photo);
db.movies.save(movieObj,function(err,docs){
if(err){
res.send(err);
}
res.json(docs);
});
});
我得到的输出是 {"_id":"590aad3ec7133419f056bc77","\"{\\"[object Object]\\":\\"\\",\\"_id\\":\ \"590aa9c455f16d0eb440673e\\"}\"":""}]
点击http://localhost:3000/api/movies 网址时。
注意: 目的是在 MongoDB 中保存数据。
【问题讨论】:
标签: node.js mongodb express mean-stack angular2-services