所以我正在尝试使用Ajax发送一个公式,然后使用护照进行Signup工作,使用护照后,对“/ ajout-membre”的POST请求被重定向到带有GET的“/”,解释更多我的代码。
var url = "http://localhost:8080/ajout-membre";
$.ajax({
url: url,
headers: {"X-CSRF-Token": $("#csrf1").val()},
data: JSON.stringify(sentinfo),
xhrFields: {withCredentials: true},
crossDomain: true,
type: 'POST',
contentType: 'application/json',
success: function(data){
//here something to do;
if(data=="membre_existant")
alert("membre existant");
else{
alert("Une erreur inconnue s'est produite");
}
}
});
“/ ajout-membre”仅用于测试:
router.post('/ajout-membre',function(req,res){
res.send(JSON.stringify("Done"));
});
你怎么能帮助我解决这个问题,我只是希望他能够找到那个根本就是