javascript - mongoose 不能用获取的ajax数据当做查询条件吗
漂亮男人
漂亮男人 2017-05-17 10:02:33
0
1
663
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);
        }
      });
漂亮男人
漂亮男人

全部回复(1)
阿神

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

Love MongoDB! Have Fun!

热门教程
更多>
最新下载
更多>
网站特效
网站源码
网站素材
前端模板