小程序 上传数组给后台

var data = JSON.stringify(param)

    wx.request({
      url: webConfig.getApi('anwer'),
      header: {
        'content-type': 'application/json',
        'token': wx.getStorageSync('token')
      },
      data:data,
      method: 'POST',
      success: function (res) {
       //返回内容
      }
    });

你可能感兴趣的:(小程序 上传数组给后台)