0
我在我的網站上有一個鏈接。點擊後,它會調用一個執行貓鼬查詢的函數。 我希望將該查詢的結果發送到變量中的同一頁面,而無需重新加載頁面。我怎麼做?現在它只是用新的查詢結果數據再次渲染頁面。從貓鼬查詢發送變量到頁面,無需重新加載點擊
// List comments for specified chapter id.
commentController.list = function (req, res) {
var chapterId = req.params.chapterId;
var query = { chapterId: chapterId };
Chapter.find({ _id: chapterId }).then(function (chapter) {
var chapter = chapter;
Comment.find(query).then(function (data) {
console.log(chapter);
Chapter.find().then(function(chapters){
return res.render({'chapterlinks', commentList: data, user: req.user, chapterq: chapter, chapters:chapters });
})
});
}) };
這是一個鏈接唯一的答案。如有必要,請使用您鏈接的內容形成一個適當的完整答案。鏈接死了,你的答案將是無用的。 https://stackoverflow.com/help/how-to-answer – Rob
雖然此鏈接可能會回答問題,但最好在此處包含答案的重要部分並提供供參考的鏈接。如果鏈接頁面更改,則僅鏈接答案可能會失效。 - [來自評論](/ review/low-quality-posts/17914517) –
也許我應該只是簡單地回答「使用ajax」,然後複製粘貼它的內容並忽略鏈接。 – bitstrider