我是一个完整的MongoDB初学者,我想知道jQuery的.get()方法是如何工作的。我已经能够使用.post()来添加和更新数据库中的项目,并且jQuery看起来像这样:
$.post(document.URL, {'answers':answer})
现在我首先尝试使用以下find()方法向客户端获取信息,该方法成功检索正确的信息并将其记录到终端中。
this.find(query, {"answers":"true", "blanks":"true"}, function(err, doc){
console.log("The correct info appears in terminal: "+doc); //{_id:52a52ee1e80e7c0000000001, answers: [ 'more', 'One', 'more' ], blanks: ['try']}
return doc;
callback();
});
我试图使用此jquery将相同的信息发送到客户端,但它只记录该页面上的html,而不是mongo中所需的2个数组。
$.get(document.URL, {'answers':[], 'blanks':[]}, function( doc ) {
console.log( doc ); //This is all the html on my page
});
我如何.get()2个数组?