我在页面上使用ajax调用,这是受密码保护的,即用户:any,密码:any。 但是我的ajax无法正常工作,并显示401状态。
这是我的代码:
jQuery.ajax({
type : 'post',
url : biosTypeAjax.ajaxurl,
data : {
action : 'request_for_bios_type_action',
id_user : exec_id
},
beforeSend: function() {
//jQuery(".loading_user_type").show();
},
success : function( data ) {
alert( data );
console.log(data);
//jQuery(".loading_user_type").hide();
jQuery(".executive-box").html(data);
}
});
请让我知道我在做什么错。 所有帮助将不胜感激。 TIA。