ajax发送头信息

前端之家收集整理的这篇文章主要介绍了ajax发送头信息前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。

$.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); } });

原文链接:https://www.f2er.com/ajax/161930.html

猜你在找的Ajax相关文章