收藏
回答

从本地选择图片无法获得本地路径,一直显示临时路径

框架类型 问题类型 操作系统 工具版本
小程序 Bug Windows v1.02.1812271

- 当前 Bug 的表现(可附上截图)

- 预期表现

获取图片本地路径

- 复现路径

获取图片本地路径

- 提供一个最简复现 Demo

获取图片本地路径

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

2 个回答

  • 花火
    花火
    2018-12-29

    choice1: function(e) {

    var self = this;

    wx.chooseImage({

    count: 1,

    sourceType: ['album', 'camera'],

    sizeType: ['original', 'compressed'],

    success: function(res) {

    var re=res;

    wx.getImageInfo({

    src: res.tempFilePaths[0],

    success(res) {

    console.log(res.path)

    wx.request({

    url: 'https://aip.baidubce.com/rest/2.0/ocr/v1/general_basic?access_token=24.9c456c2bbbcfdaa0cd48800bf03ae15d.2592000.1548574107.282335-15294908',

    data: {

    // url: self.utf16to8(res.path)

    url: self.utf16to8('https://ss2.baidu.com/-vo3dSag_xI4khGko9WTAnF6hhy/image/h%3D300/sign=092fd68637292df588c3aa158c305ce2/9345d688d43f879439035b87df1b0ef41ad53a9e.jpg')

    },

    header: {

    'content-type': 'application/x-www-form-urlencoded'

    },

    method: 'post',

    success(re) {

    console.log(re)

    }


    })

    }

    })

    },

    })

    },


    2018-12-29
    有用
    回复
  • 灵芝
    灵芝
    2018-12-29

    麻烦提供能复现问题的代码片段(https://developers.weixin.qq.com/miniprogram/dev/devtools/minicode.html

    2018-12-29
    有用
    回复
登录 后发表内容