WordPress主题开发中使用Ajax异步更新前端用户头像

WordPress主题开发中使用Ajax异步更新前端用户头像,第1张

概述html代码如下: <div class="file"> <span>上传头像</span> <input type=...

HTML代码如下:<div >

<span>上传头像</span>

<input type="file" name="addPic" ID="addPic" accept=".jpg,.gif,.png" resetonclick="true" data-nonce="<?PHP echo $wp_create_nonce; ?>">

</div>

//其中<?PHP $wp_create_nonce = wp_create_nonce('wpshequ-'.get_current_user_ID());?>Js(使用了Js中的FormData)代码如下:

<script type="text/JavaScript">

$("#addPic").change(function(e){

var _this = $(this)

var nonce = _this.data("nonce")

var file = e.currentTarget.files[0];

console.log(file)

//结合formData实现图片预览

var sendData=new FormData();

sendData.append('nonce',nonce);

sendData.append('action','update_avatar_photo');

sendData.append('file',file);

$.AJAX({

url: "/wp-admin/admin-AJAX.PHP",

type: 'POST',

cache: false,

data: sendData,

processData: false,

ContentType: false

}).done(function(res) {

if (res.status == 1) {

layer.msg(res.msg,function(){

location.reload();

});

setTimeout(function(){location.reload()},1000)

}else{

layer.msg(res.msg,function(){

location.reload();

});

}

}).fail(function(res) {

layer.msg('网络错误',function(){

location.reload();

});

});

});

</script>

//其中的d窗提示使用了layer.JsPHP后端处理代码如下:

// 上传头像avatar_photo

function mx_update_avatar_photo()

{

header('Content-type:application/Json; Charset=utf-8');

global $current_user;

$uID = $current_user->ID;

$nonce = !empty($_POST['nonce']) ? $_POST['nonce'] : null;

$file = !empty($_fileS['file']) ? $_fileS['file'] : null;

if ($nonce && !wp_verify_nonce($nonce,'wpshequ-' . $uID)) {

echo Json_encode(array('status' => '0','msg' => '非法请求'));exit;

}

$file_index = mb_strrpos($file["name"],'.'); //扩展名定位

//图片验证

$is_img = getimagesize($file["tmp_name"]);

if(!$is_img && true){

echo Json_encode(array('status' => '0','msg' => '上传文件类型错误'));exit;

}

//图片类型验证

$image_type = ['image/jpg','image/gif','image/png','image/bmp','image/pjpeg',"image/jpeg"];

if(!in_array($file['type'],$image_type) && true){

echo Json_encode(array('status' => '0','msg' => '禁止上传非图片类型文件'));exit;

}

//图片后缀验证

$postfix = ['.png','.jpg','.jpeg','pjpeg','gif','bmp'];

$file_postfix = strtolower(mb_substr($file["name"],$file_index));

if(!in_array($file_postfix,$postfix) && true){

echo Json_encode(array('status' => '0','msg' => '上传后缀不允许'));exit;

}

if ( !empty( $file ) ) {

// 获取上传目录信息

$wp_upload_dir = wp_upload_dir();

// 将上传的图片文件移动到上传目录 md5纯命名图片

$info = pathinfo($file['name']);

$ext = empty($info['extension']) ? '' : '.' . $info['extension'];

$name = basename($file['name'],$ext);

$basename = time().'-'.substr(md5($name),15) . $ext;

//

$filename = $wp_upload_dir['path'] . '/' . $basename;

$re = rename( $file['tmp_name'],$filename );

$attachment = array(

'guID' => $wp_upload_dir['url'] . '/' . $basename,

'post_mime_type' => $file['type'],

'post_Title' => preg_replace( '/.[^.]+$/','',$basename ),

'post_content' => '',

'post_status' => 'inherit'

);

$attach_ID = wp_insert_attachment( $attachment,$filename );

require_once( ABSPATH . 'wp-admin/includes/image.PHP' );

$attach_data = wp_generate_attachment_Metadata( $attach_ID,$filename );

wp_update_attachment_Metadata( $attach_ID,$attach_data );

if($attach_ID){

update_user_Meta($uID,'wp_user_avatar',$attach_ID);

echo Json_encode(array('status' => '1','msg' => '上传成功'));exit;

} else {

echo Json_encode(array('status' => '0','msg' => '上传失败'));exit;

}

}

echo Json_encode(array('status' => '0','msg' => '文件错误'));exit;

}

add_action('wp_AJAX_mx_update_avatar_photo','mx_update_avatar_photo');

add_action('wp_AJAX_nopriv_mx_update_avatar_photo','mx_update_avatar_photo');

总结

以上是内存溢出为你收集整理的WordPress主题开发中使用Ajax异步更新前端用户头像全部内容,希望文章能够帮你解决WordPress主题开发中使用Ajax异步更新前端用户头像所遇到的程序开发问题。

如果觉得内存溢出网站内容还不错,欢迎将内存溢出网站推荐给程序员好友。

欢迎分享,转载请注明来源:内存溢出

原文地址: http://outofmemory.cn/zz/998187.html

(0)
打赏 微信扫一扫 微信扫一扫 支付宝扫一扫 支付宝扫一扫
上一篇 2022-05-21
下一篇 2022-05-21

发表评论

登录后才能评论

评论列表(0条)

保存