uni-app更换头像(自用瞎写的)
作者:互联网
// 换头像 changeImg() { console.log("000000") // 1,选择头像文件 uni.chooseImage({ count: 1, success: (res) => { console.log(res) // 2上传文件 uni.uploadFile({ url: "/api/pcUser/updata/userAvatar", filePath: res.tempFilePaths[0], name: "file", success: (res2) => { console.log(res2) console.log(res2.data) console.log(JSON.parse(res2.data)) if (JSON.parse(res2.data).code == 0) { this.$store.dispatch("checkLogin") } else { uni.showModal({ title: "提示信息", content: "更改失败!" }) } } }) } }) },
标签:console,log,res2,res,app,自用,uni,data 来源: https://www.cnblogs.com/myqinyh/p/15430974.html