gpt4 book ai didi

javascript - 如果没有 jQuery,我怎样才能重写这段代码呢?

转载 作者:行者123 更新时间:2023-12-01 02:04:17 24 4
gpt4 key购买 nike

如何在不使用 jQuery 的情况下重写此代码?我需要在无法使用 jQuery 的移动应用程序中执行此操作。

 $.ajax({
type: "POST",
url:"../REST/session.aspx?_method=put",
data: JSON.stringify(dataObject, null,4),
cache: false,
dataType: "json",
success: onSuccessLogin,
error: function (xhr, ajaxOptions){
alert(xhr.status + " : " + xhr.statusText);
}

});

最佳答案

你可以试试这个:

var xmlhttp;
if (window.XMLHttpRequest) { // code for IE7+, Firefox, Chrome, Opera, Safari
xmlhttp=new XMLHttpRequest();
} else { // code for IE6, IE5
xmlhttp=new ActiveXObject("Microsoft.XMLHTTP");
}

xmlhttp.onreadystatechange = function() {
if (xmlhttp.readyState == 4 && xmlhttp.status != 200) {
// What you want to do on failure
alert(xmlhttp.status + " : " + xmlhttp.responseText);
 }
if (xmlhttp.readyState == 4 && xmlhttp.status == 200) {
// What you want to do on success
onSuccessLogin();
}
}

xmlhttp.open("POST", "../REST/session.aspx?_method=put", true);
xmlhttp.setRequestHeader("Content-type", "application/x-www-form-urlencoded");
xmlhttp.setRequestHeader("Cache-Control", "no-cache"); // For no cache
xmlhttp.send("data=" + JSON.stringify(dataObject, null,4));

至于如何仅使用 javascript 而不使用 jQuery 库做更多事情,请查看 W3Schools AJAX TutorialMozilla - Using XMLHttpRequest

正如 duri 所说,您必须找到一种将 dataObject 转换为字符串的方法,因为并非所有浏览器都支持 JSON 对象。

关于javascript - 如果没有 jQuery,我怎样才能重写这段代码呢?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/5165426/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com