收藏
回答

uploadFile报错unable to verify the first certificat?

使用wx.uploadFile时,URL采用本机的一个链接API接口;但无法访问;老报unable to verify the first certificat;这是为什么?

代码就是基础的样例代码;

wx.uploadFile({

url: 'https://localhost:44325/Server/ServerFood', // 仅为示例,非真实的接口地址

filePath: that.data.Images_Address,

name: 'upload',

formData: {

user: 'test'

},

success(res) {

console.log('success', res.data, res.statusCode)

// do something

},

fail(res) {

const data = res.data

wx.showModal({

title: 'fail',

content: 'fail',

})

// do something

}

})


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

2 个回答

  • Admin ²º²⁴
    Admin ²º²⁴
    2020-02-13

    本机配置的https证书不对,证书验证失败。

    你测试的话用http方式访问localhost试试

    2020-02-13
    有用 1
    回复 2
    • 周舟
      周舟
      2020-02-13
      谢谢;确实如此;
      2020-02-13
      回复
    • Admin ²º²⁴
      Admin ²º²⁴
      2020-02-13回复周舟
      你客气了,有用的话点赞
      2020-02-13
      1
      回复
  • 龙行
    龙行
    2023-09-01

    我是在上传到体验版时,遇到了这个,关闭fiddler就解决了。给大家提供一个思路。

    2023-09-01
    有用
    回复
登录 后发表内容
问题标签