admin管理员组文章数量:1417070
I've been working on ajax lately. The tutorials you find on the net are all very similar and quite easy to implement. But I always get a bad request 400 on my ajax-admin.php file. also wp_localize_script used properly with wp_ajax action. when i logged in with Administrator.it works fine. getting 400 with other role.
var file_data = $('#file').prop('files')[0];
var form_data = new FormData();
form_data.append('file', file_data);
form_data.append('action', 'file_upload');
$.ajax({
url: ajaxurl,
type: 'POST',
processData: false,
data: form_data,
dataType: "html",
contentType: "application/json",
success: function (response) {
alert(response);
},
error: function(e) {
console.log(e);
},
});
本文标签: get a bad request 400 on my ajaxadminphp file
版权声明:本文标题:get a bad request 400 on my ajax-admin.php file 内容由网友自发贡献,该文观点仅代表作者本人, 转载请联系作者并注明出处:http://www.betaflare.com/web/1745259588a2650293.html, 本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌抄袭侵权/违法违规的内容,一经查实,本站将立刻删除。
发表评论