uni-app App端 FormData格式 头像上传 带 裁剪功能

1.需要用到 uni.chooseImage uni.uploadFile 这两个方法
2.代码如下:这是自己封装的 一个头像组件
  • 1.组件引入

            






  • 3.scss文件
// height  rpx
@for $i from 1 through 1000 {
    .h-#{$i} {
        height: $i + rpx;
    }
}
// lin-height  rpx
@for $i from 1 through 1000 {
    .l-h-#{$i} {
        line-height: $i + rpx;
    }
}

// width  rpx
@for $i from 1 through 500 {
    .w-#{$i} {
        width: $i + rpx;
    }
}

// border 圆角rpx
@for $i from 10 through 200 {
    .border-#{$i} {
        border-radius: $i + rpx;
    }
}

你可能感兴趣的:(uni-app App端 FormData格式 头像上传 带 裁剪功能)