我需要在 PUT 方法中发送一个 xhr 请求
这是我的代码:
function put(_url, _callback,_data){
var xhr = createCORSRequest('PUT',_url);
if (!xhr){
throw new Error('CORS not supported');
}
$('.ajax-loading').show();
xhr.send(_data);
/*SUCCESS -- do somenthing with data*/
xhr.onload = function(){
// process the response.
_callback(xhr.responseText);
$('.ajax-loading').hide();
};
xhr.onerror = function(e){
console.log(e);
$('.ajax-loading').show();
};
}
不知道为什么它不起作用,因为它没有将数据传递给我设置的 url。虽然在 POST 方法中执行相同的功能是可以的!
有任何想法吗?