我如何收集客户端发送的信息?在这种情况下,身份证?
我怎样才能获得身份证?
我使用客户端请求:
return $http.post('/api/kill',{id:4},{ headers: {} })
当我检查服务器支持req.body console.log(Req.body)我得到:
{ '{"id":4}': '' }
req.body.id返回:
undefined
我怎样才能得到4的id?
EDIT1:
主要代码位于https://github.com/meanjs/mean
服务器端代码:
app.post('/api/kill',function (req,res) { console.log(req.body); // { '{"id":4}': '' } console.log(req.body.id); // undefined });
您需要将id属性分配给对象
原文链接:https://www.f2er.com/angularjs/141945.htmlitem = {id:4}
让我们假设您有一个文本框,并且用户想要通过在其中插入名称来保存新项目,然后单击提交.
让我们假设您正在使用MongoDB项目集合,为简单起见,它们只有id字段.
这是你应该做些什么来让它变得容易.
确保您要导入bodyParser
var bodyParser = require('body-parser');
HTML – 使用自定义ID保存新项目
<div class="form-group"> <label for="id">ID</label> <input type="text" class="form-control" id="id" ng-model="ItemController.formData.id"> </div> <button type="submit" ng-click="ItemController.createItem()" >Submit</button>
角度部分 – ItemController.js
'use strict'; angular .module('myApp') .controller('ItemController',ItemController); function ItemController($http) { var vm = this; /** Creates a New Marker on submit **/ vm.createItem = function() { // Grabs all of the text Box fields var itemData = { id : vm.formData.id }; // Saves item data to the db $http.post('/api/kill',itemData) .success(function(response) { if(response.err){ console.log('Error: ' + response.err); } else { console.log('Saved '+response); } }); }; }
路线处理 – routes.js
var ItemFactory = require('./factories/item.factory.js'); // Opens App Routes module.exports = function(app) { /** Posting a new Item **/ app.post('/api/kill',function(req,res) { ItemFactory.postItem(req).then( function (item) { return res.json(item); }); }); };
发布到MongoDB – item.factory.js
var Item = require('../models/item-model'); exports.postItem = postItem; function postItem(item) { return new Promise( function (resolve,reject) { var newItem = new Item(item.body); newItem.save(function(err) { if (err){ return reject({err : 'Error while saving item'}); } // If no errors are found,it responds with a JSON of the new item return resolve(item.body); }); }); }
如果您在我传递项目的不同代码段上尝试console.log(),您可以正确地查看具有id属性的对象.
我希望我一直很有帮助.