我使用節點js作爲我的服務器端,而angular和html作爲我的客戶端。多重插入到貓鼬
我在我的服務器端插入數據貓鼬。當我在同一頁面上並想要插入新數據到貓鼬時,我必須重新啓動服務器才能使其工作。
如何在代碼中將其寫入以重新啓動它?或者如果有不同的方式來清理我以前的請求?
var savePersonal = new personal({
email : myemail,
Tags : mytags,
Title: request.body.Title,
Info: request.body.Info,
Category: request.body.Category,
file: "none",
Recommendation:request.body.Recommendation,
myDate:tempDate
});
savePersonal.save(function(error, result) {
if (error) {
console.error(error);
} else {
console.log("save");
request = "";
response.redirect('http://localhost:8080/getPrivateData.html');
}
})
顯示您的代碼? – Alex
@Alex當我再次按下具有插入按鈕的頁面 - 那裏的服務器卡住 – user193239
如果問題是從上面的代碼我想這是重定向的東西,嘗試重定向到一個路線,而不是HTML頁面爲前( response.redirect('/ home')) –