uniapp开发微信小程序裁剪头像

uniapp插件市场:https://ext.dcloud.net.cn/plugin?id=404

已测试过微信小程序和app都能够正常使用

//template部分
    <avatar 
        selWidth="200px" selHeight="400upx" @upload="myUpload" :avatarSrc="url"
        avatarStyle="width: 200upx; height: 200upx; border-radius: 100%;">
    </avatar>

//script部分
    import avatar from "../../components/yq-avatar/yq-avatar.vue";
    export default {
        data() {
            return {
                screenshot: "../../static/logo.png"
            }
        },
        methods: {
            myUpload(rsp) {
                this.screenshot = rsp.path; //更新头像方式一
                //rsp.avatar.imgSrc = rsp.path; //更新头像方式二
            }
        },
        components: {
            avatar
        }
    }

将这个图片上传到服务器就可以了

效果图:

猜你喜欢

转载自blog.csdn.net/maowencai/article/details/128934754