我正在添加一个单击按钮时应调用的函数,我有一个js文件,其中包含以下jquery代码和ajax调用:
jQuery(document).ready( function() {
function getUrlParameter(sParam){
var sPageURL = window.location.search.substring(1);
var sURLVariables = sPageURL.split('&');
for (var i = 0; i < sURLVariables.length; i++) {
var sParameterName = sURLVariables[i].split('=');
if (sParameterName[0] == sParam) {
return sParameterName[1];
}
}
}
jQuery('#upload_btn').click( function(e) {
e.preventDefault();
var flag = true;
var postId = getUrlParameter('preview_id');
var files = jQuery('#file_tool').prop('files');
console.log(files);
var dataS = {
'action': 'upload_button',
'preview_id': postId,
'files': files,
'set': flag
}
jQuery.ajax({
type : 'post',
url : diario.upload,
processData: false,
contentType: false,
data : dataS,
success: function(response) {
if(response.type == "success") {
console.log('jquery works');
} else console.log(response);
}
});
});
});
当我单击按钮时,console.log会显示文件obj,因此至少onClick可以运行,但紧接着它会显示 jquery.js:4 POST custom / wp-admin / admin-ajax.php 400 。这就是我的functions.php的样子:
add_action( 'wp_enqueue_scripts', 'enqueue_onClick_upload' );
//custom_js_enqueuer
function enqueue_onClick_upload() {
wp_register_script( 'onClick_upload', WP_CONTENT_URL.'/themes/microjobengine/onClick_upload.js', array('jquery') );
wp_localize_script( 'onClick_upload', 'diario', array( 'upload' => admin_url( 'admin-ajax.php' )));
wp_enqueue_script( 'jquery' );
wp_enqueue_script( 'onClick_upload' );
}
add_action('wp_ajax_upload_button', 'upload_button');
add_action('wp_ajax_nopriv_upload_button', 'upload_button');
// upload button function
function upload_button() {
$postID = $_POST['preview_id'];
if ($_POST['set']) {
if($_POST['files']['size'] === 0 )
echo "<script>console.log('There's no images.');</script>";
}
$result['type'] = 'success';
echo json_encode($result);
wp_die();
}
我不知道为什么它找不到动作,一切都按照wp所说的完成了,我希望有人能伸出援手,谢谢。
-编辑-
好的,所以现在我尝试仅传递'action': 'upload_button'
,不会出现错误,但响应不会成功,我使用函数内部的所有代码进行了注释,只留下了3行,为了返回成功,但没有成功,因此它可能会找到该函数,但由于某种原因而无法执行,这当然意味着当我传递额外的数据时发生了错误,对此有任何想法发生了吗?
答案 0 :(得分:0)
对不起,我没有从函数中获取反馈的正确方法,我只需要删除所有echo
并将所需的所有内容保存到数组中并以json编码的方式返回。