当前位置:网站首页>Upload avatar on uniapp
Upload avatar on uniapp
2022-07-05 00:05:00 【I'm happy】
<template>
<view>
<!-- // By default -->
<image v-if="!imgUrl" :src="require('../../static/nav/icon_me_n.svg')" class="headPhoto" @tap="openChooseImg"></image>
<!-- // The user clicks the modified -->
<image v-else :src="imgUrl" class="headPhoto"></image>
</view>
</template>
<script>
export default {
data() {
return {
imgUrl: ""
};
},
methods: {
openChooseImg() {
uni.chooseImage({
count: 1, // The maximum number of sheets that can be selected
sizeType: ['original', 'compressed'], // You can specify whether it is original or compressed , By default, both of them have
sourceType: ['album', 'camera'], // Select from the album , And camera functions , By default, both of them have
success: res => {
console.log(res, ' Head portrait res')
this.imgUrl = res.tempFilePaths[0] // Assign the selected avatar to imgurl
console.log(this.imgUrl, 'this.imgUrl')
}
});
},
},
};
</script>
<style lang="scss">
.timeBox {
margin-top: 50rpx;
}
</style>
边栏推荐
- 人脸识别5- insight-face-paddle-代码实战笔记
- [paper reading] Tun det: a novel network for meridian ultra sound nodule detection
- 城市轨道交通站应急照明疏散指示系统设计
- Jar batch management gadget
- 快解析——好用的内网安全软件
- MP advanced operation: time operation, SQL, querywapper, lambdaquerywapper (condition constructor) quick filter enumeration class
- Blue sky nh55 series notebook memory reading and writing speed is extremely slow, solution process record
- 端口映射和端口转发区别是什么
- Chinese verification of JS regular expressions (turn)
- [论文阅读] TUN-Det: A Novel Network for Thyroid Ultrasound Nodule Detection
猜你喜欢

Selected cutting-edge technical articles of Bi Ren Academy of science and technology

机器人强化学习——Learning Synergies between Pushing and Grasping with Self-supervised DRL (2018)

Application of multi loop instrument in base station "switching to direct"

S32 design studio for arm 2.2 quick start

How to apply for PMP project management certification examination?

Verilog tutorial (11) initial block in Verilog

Data on the number of functional divisions of national wetland parks in Qinghai Province, data on the distribution of wetlands and marshes across the country, and natural reserves in provinces, cities

Using fast parsing intranet penetration to realize zero cost self built website

Some basic functions of enterprise projects are developed, and important things are saved to online first a

Fast parsing intranet penetration helps enterprises quickly achieve collaborative office
随机推荐
IELTS examination process, what to pay attention to and how to review?
PMP certificate renewal process
Continuous modification of business scenario functions
Parsing of XML
Paddleocr tutorial
Significance of acrel EMS integrated energy efficiency platform in campus construction
After Microsoft disables the IE browser, open the IE browser to flash back the solution
Specification for fs4061a boost 8.4v charging IC chip and fs4061b boost 12.6V charging IC chip datasheet
Solve the problem that the virtual machine cannot be remotely connected through SSH service
Is it safe to open and register new bonds? Is there any risk? Is it reliable?
用快解析内网穿透实现零成本自建网站
Netcore3.1 JSON web token Middleware
How long does it take to obtain a PMP certificate?
如果炒股开华泰证券的户,在网上开户安全吗?
22-07-02周总结
Face recognition 5- insight face padding code practice notes
Best practice case of enterprise digital transformation: introduction and reference of cloud based digital platform system security measures
What is the difference between port mapping and port forwarding
模板的进阶
微服务(Microservice)那点事儿