express4之前,bodyparser是express下的一个对象. express4把bodyparser分离出来. 本文中的实例基于以下的这个请求 $.ajax({ url: '/save', type: 'post', data: { info: { nane: 'henry', age: 30 }, hobby: ['sport', 'coding'] } }); 一般来说express在接收到这个请求时,收到的请求参数是这样的 app.post('/save', function(…