收藏
回答

wx.uploadFile中的url是什么?后端接口吗?

框架类型 问题类型 API/组件名称 终端类型 微信版本 基础库版本
小程序 Bug wx.uploadFile 微信iOS客户端 8.0.9 2.16.1

https://developers.weixin.qq.com/miniprogram/dev/api/network/upload/wx.uploadFile.html

wx.chooseImage({
  success (res) {
    const tempFilePaths = res.tempFilePaths
    wx.uploadFile({
      url: 'https://example.weixin.qq.com/upload', //仅为示例,非真实的接口地址
      filePath: tempFilePaths[0],
      name: 'file',
      formData: {
        'user': 'test'
      },
      success (res){
        const data = res.data
        //do something
      }
    })
  }
})


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

3 个回答

  • 无端
    无端
    2022-03-30

    我想问问这个url怎么获取呀,不知道写什么

    2022-03-30
    有用
    回复
  • spider
    spider
    2021-08-05

    对的,后端接口

    2021-08-05
    有用
    回复
  • ωǎnɡ
    ωǎnɡ
    2021-08-05

    是的

    2021-08-05
    有用
    回复
登录 后发表内容