当前位置:网站首页>Wechat applet avatarcropper avatar clipping
Wechat applet avatarcropper avatar clipping
2022-07-26 09:27:00 【44w0】
Recently, I'm developing wechat applet , In order to avoid uploading too large user avatars , Lead to waste of resources , Added the function of head image clipping
Use u-View In the component library AvatarCropper Head cut
The official website has made it very clear , The following is the official website address :
https://www.uviewui.com/components/avatarCropper.html
I directly use the code on the official website , I found some problems :
this.$u.route Jump invalid , I'll switch to uniapp Of uni.navigateTo, change to the use of sth. uni.navigateTo You need to pay attention to , The original parameter writing method is not good ,uni.navigateTo The parameters of are spliced behind the path , Use... Between multiple parameters && separate .
methods{
chooseAvatar() {
uni.navigateTo({
// About this path , See below " matters needing attention "
url: '../../u-avatar-cropper/u-avatar-cropper?rectWidth='+200+'&&destWidth='+200+'&&fileType='+'jpg',
})
},
}
created() {
// Listen for events posted from the clipping page , Get clipping results
uni.$on('uAvatarCropper', path => {
let token = uni.getStorageSync("token");
this.avatar = path;
// You can upload it to the server here
uni.uploadFile({
url: baseUrl + '/users/updateAvatar', // Image upload address
filePath: path,
name: 'avatar',
header: {
Authorization: token
},
complete: (res) => {
console.log(res);
}
});
})
},
边栏推荐
- The provincial government held a teleconference on safety precautions against high temperature weather across the province
- keepalived 实现mysql自动故障切换
- 2B and 2C
- (2006, MySQL server has gone away) problem handling
- Sliding window, double pointer, monotone queue, monotone stack
- Selection and practice of distributed tracking system
- 【线上问题】Timeout waiting for connection from pool 问题排查
- 选择器的使用
- Innovus is stuck, prompting x error:
- 2022 chemical automation control instrument operation certificate test question simulation test platform operation
猜你喜欢
随机推荐
Conditions for JVM to trigger minor GC
会议OA项目(三)---我的会议(会议排座、送审)
异常处理机制二
滑动窗口、双指针、单调队列、单调栈
自定义密码输入框,无圆角
OFDM 十六讲- OFDM
MySql5.7.25源码安装记录
Force button list question
838. Heap sorting
暑假第四周
2B and 2C
Selection and practice of distributed tracking system
Neural network and deep learning-6-support vector machine 1-pytorch
arcgis的基本使用4
2022 mobile crane driver test question simulation test question bank simulation test platform operation
服务器内存故障预测居然可以这样做!
Basic use of Arc GIS 2
Zxing simplified version, reprinted
php执行shell脚本
大二上第一周学习笔记