我正在連接到rest-api的網站上工作。用戶可以登錄到網頁。我有一個註銷按鈕,後面我需要編寫javascript/json/http請求來終止用戶會話。這是我的,任何人都可以告訴我它是否有意義?使用http刪除用戶會話DELETE
<form action="http://apiaddresshere.com" method="delete" id = "myform">
<input type = "submit" value="Logout">
</form>
<script>
var form = document.getElementById("myform");
form.onsubmit = function (e) {
// stop the regular form submission
e.preventDefault();
// construct an HTTP request
var xhr = new XMLHttpRequest();
xhr.open(form.method, form.action, true);
xhr.setRequestHeader('Content-Type', 'application/json; charset=UTF-8');
// send the null data as JSON
xhr.send(JSON.stringify());
xhr.onloadend = function() {
// done
};
};
</script>
你有什麼問題? 「有意義」沒有什麼意義...... – Lee
Hi Lee,我在學習如何使用這些技術的過程中,只是尋找一點點指導,以確定我是否正朝着正確的方向前進。 – bookthief