收藏
回答

我想将从本地获取的图片地址添加到我自己的数据库中并且替换掉之前数据库中的图片地址该怎么做呢?

addLogo: function() {
        var _this = this
        console.log("添加LOGO")
        wx.chooseImage({
            count1,
            sizeType: ['original''compressed'],
            sourceType: ['album''camera'],
            success(res) {
                console.log("xxxxxxxxxx")
                    // tempFilePath可以作为img标签的src属性显示图片
                const tempFilePaths = res.tempFilePaths
                console.log(tempFilePaths)
                _this.setData({
                    logopath: tempFilePaths[0],
                })
            }
        })
    }

回答关注问题邀请回答
收藏

1 个回答

登录 后发表内容
问题标签