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: "更改失败!"
                                    })
                                }
                            }
                        })
                    }
                })
            },

 

上一篇:uni.requet()、网络模块封装


下一篇:uni.getLocation()不能使用this的原因是。。。