搜尋

首頁  >  問答  >  主體

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);
        }
      });
漂亮男人漂亮男人2739 天前650

全部回覆(1)我來回復

  • 阿神

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

    供參考。因為是AJAX呼叫過來的,把結果回到呼叫的地方顯示,而不是console列印。

    Love MongoDB! Have Fun!

    回覆
    0
  • 取消回覆