मैं jQuery का उपयोग करके AJAX GET में अनुरोध हेडर पारित करने की कोशिश कर रहा हूं। निम्नलिखित ब्लॉक में, "डेटा" स्वचालित रूप से क्वेरिस्ट्रिंग में मूल्यों को पारित करता है। क्या इसके बजाय अनुरोध शीर्षलेख में उस डेटा को पास करने का कोई तरीका है?
$.ajax({
url: "http://localhost/PlatformPortal/Buyers/Account/SignIn",
data: { signature: authHeader },
type: "GET",
success: function() { alert('Success!' + authHeader); }
});
निम्नलिखित या तो काम नहीं किया
$.ajax({
url: "http://localhost/PlatformPortal/Buyers/Account/SignIn",
beforeSend: { signature: authHeader },
async: false,
type: "GET",
success: function() { alert('Success!' + authHeader); }
});