我正在使用 Node.js,我想查看已发布到我的脚本的所有参数。为了发挥我的作用,routes/index.js
我正在做:
app.post('/v1/order', order.create);
然后在我的功能中,我有:
exports.create = function(req, res, next) {
console.log( req.params );
但它返回一个空数组。但是当我这样做时:
exports.create = function(req, res, next) {
console.log( req.param('account_id') );
我得到数据。所以我对这里发生的事情有点困惑。