$.ajax({
url: "http://localhost:1005/api/values",
type: "GET",
beforeSend: function (xhr) {
xhr.setRequestHeader("X-Custom-Header1", "Bar");
},
success: function (data) {
alert(data);
},
error: function (xhr, textStatus, errorThrow) {
alert(xhr.readyState);
}
});
时间: 2024-10-27 10:42:26