我想POST/PUT以下文本
{ 「電子郵件」: 「[email protected]」}
via xhttp.send到外部服務器。我需要來發布雙引號,但我該怎麼做?我閱讀了關於性能,特點等等,但我仍然在一個小時或更長時間後找不到解決方案。當然,這是行不通的(因爲雙引號的衝突):
xhttp.send("{"email":"[email protected]"}");
這是劇本到現在爲止:
<!DOCTYPE html>
<html>
<body>
<h1>The XMLHttpRequest Object</h1>
<button type="button" onclick="loadDoc()">Request data</button>
<p id="demo"></p>
<script>
function loadDoc() {
var xhttp = new XMLHttpRequest();
xhttp.onreadystatechange = function() {
if (this.readyState == 4 && this.status == 200) {
document.getElementById("demo").innerHTML = this.responseText;
}
};
xhttp.open("PUT", "http://www.example.com/json", true);
xhttp.setRequestHeader("Content-type", "application/x-www-form-urlencoded");
xhttp.setRequestHeader('X-CSRF-Token', "csrf_token");
xhttp.send("fname=Henry"); //TODO: MAKE SURE THAT EXACTLY {"email":"[email protected]"} WILL BE 'POSTED'.
}
</script>
</body>
</html>
請幫助我,我不知道這一點。
轉義它們或使用單引號作爲分隔符 –