uni-app开发小程序如何传递form-data格式的参数

    async onGetphonenumber(ev) {
      const { code } = ev.detail
      const params = {
        code: code,
        platform: 'wx',
        client_id: "myjszl",
        client_secret: '123',
        grant_type: "wx_code"
      }
      postLoginWxMinAPI(params, { header: { 'content-type': 'application/x-www-form-urlencoded' }, custom: { auth: true } }).then((res) => {
        uni.setStorageSync('accessToken', res.accessToken);
        uni.switchTab({
          url: '/pages/index/index'
        });
      }).catch(() => {

      })
    },
    这是结合u-view2.x版本的api请求实现的。

你可能感兴趣的:(uni-app,小程序)