注意点:
①该函数较新,旧版本微信无法使用,完善的小程序需要判断
②vant-app的Toast组件可能会有冲突,暂时请直接用微信的loading

wx.chooseMessageFile({
      count: 1,
      type: 'file',
      success(res) {
        var filename = res.tempFiles[0].name
        console.info(filename);
        wx.uploadFile({
          url: "http://thoa.chenm.xyz/upfile.php",
          filePath: res.tempFiles[0].path,
          name: 'uploadFile',
          success(res) {
            //json字符串 需用JSON.parse 转
            console.log(res);
          }
        })
      }
    });