回答

0

如果使用XMLHttpRequest小號,您可以設置withCredentialstrue,以包括認證相關的數據到請求。例如:

var req = new XMLHttpRequest(); 
... 
req.withCredentials = true; 
req.send(null); 
+0

您的意思是後臺腳本可以使用站點中的cookie?如果是的話,你能告訴我該怎麼做嗎? – nvcnvn