利用ajax post表单,返回response设置cookie失效,该怎么办?
实验了多次,返回的response中有Set-Cookie,但是返回主页刷新任然没有cookie。
下面是提交请求代码:
javascript
$.post("/api/register",{ name : name, email : email, passwd : CryptoJS.SHA1(email + ':' + password).toString(), },function(data, textStatus, xhr){ if(data === "success create"){ location.assign('/'); }else{ showError(data); } });
node.js Ajax responsebody cookie
calfn
9 years, 2 months ago