uniapp:微信小程序上传头像

html 复制代码
<view class="logo df-aic-jucen">
	<button class="btn-normal" open-type="chooseAvatar" @chooseavatar="onChooseAvatar"></button>
	<image :src="userinfo.head_portrait" mode="" class="img1"></image>
</view>
js 复制代码
onChooseAvatar(e){
	console.log(e);
	this.$uploadImage('/api/uploadImage', e.detail.avatarUrl).then(res => {
		console.log('2',res);
		if (res.code == 200) {
			this.new_avatar_url = res.data.path
			this.$http.post('/api/editUserInfo',{
				name:this.userinfo.name,
				head_portrait:this.new_avatar_url ? this.new_avatar_url : this.userinfo.head_portrait
			}).then(res=>{
				if(res.code == 200){
					this.$toast('修改成功')
				}
			})
		}
	})
},
相关推荐
数据皮皮侠2 小时前
最新上市公司业绩说明会文本数据(2017.02-2025.08)
大数据·数据库·人工智能·笔记·物联网·小程序·区块链
不如摸鱼去18 小时前
Trae 辅助下的 uni-app 跨端小程序工程化开发实践分享
微信小程序·小程序·uni-app·aigc·ai编程
意会20 小时前
微信闪照小程序实现
前端·css·微信小程序
小白_ysf1 天前
uniapp 开发微信小程序,获取经纬度并且转化详细地址(单独封装版本)
微信小程序·uni-app
iOS阿玮1 天前
三年期已满,你的产品不再更新将于90天后下架。
uni-app·app·apple
weixin_lynhgworld1 天前
剧本杀小程序系统开发:构建剧本杀社交新生态
小程序
说私域1 天前
基于定制开发开源 AI 智能名片 S2B2C 商城小程序的热点与人工下发策略研究
人工智能·小程序
weixin_lynhgworld1 天前
陪诊小程序系统开发:让就医不再是一件难事
小程序
是一碗螺丝粉2 天前
拯救你的app/小程序审核!一套完美避开审核封禁的URL黑名单机制
前端·javascript·微信小程序
bug总结2 天前
深入理解 uni-app 的 uni.createSelectorQuery()
uni-app