函数如何调用另一个函数并在mongoose Schema中传递params

时间:2014-04-10 12:08:01

标签: node.js mongodb mongoose

调用getQuery并传递请求的参数的方法是什么?

var Place= require('../models/place.js');

 findAllPlaces = function (req, res, next) {
    Place.getQuery(req.query).exec(function(err, places) {
    console.log(JSON.parse(JSON.stringify(places)));
     res.send(places);
    });

    function getQuery (rawParams) {
    console.log(JSON.parse(JSON.stringify(rawParams)));
    }
 }

0 个答案:

没有答案