搜索

首页  >  问答  >  正文

javascript - mongoose 不能用获取的ajax数据当做查询条件吗

Ques.find({'author': 'admin'})
    .select('star')
    .exec((err, stars) => {
      if (err) next(err)
      console.log(stars)
    });

这样直接写能够获取到author为admin的数据。

但是换做ajax的数据时, 始终不行

  let authors = req.body.author;
  console.log("服务器收到一个Ajax请求,信息为:", authors);
  console.log(typeof(authors))  // string
  let auth = authors 
  console.log(auth)  // admin
  Ques.find({'author': auth})
    .select('star')
    .exec((err, stars) => {
      if (err) next(err)
      console.log(stars)
    });

不显示数据, 说明是没有找到这个用户

我又这样试了试

  let auth = 'admin'
  Ques.find({'author': auth})
    .select('star')
    .exec((err, stars) => {
      if (err) next(err)
      console.log(stars)
    });

这样也是可以的

ajax请求

      let author = XXX; // 动态获取的
      $.ajax({
        data: {author: author},
        url: '/star',
        dataType: 'json',
        timeout: 2000,
        type: "POST",
        success: function(data){
          console.log(data);
        }
      });
漂亮男人漂亮男人2773 天前670

全部回复(1)我来回复

  • 阿神

    阿神2017-05-17 10:04:33

    供参考。因为是AJAX调用过来的,把结果返回到调用的地方显示,而不是console打印。

    Love MongoDB! Have Fun!

    回复
    0
  • 取消回复