微信小程序: POST请求参数传递的问题,后台接收不到“behavior_result”参数

如图:

https://img1.mukewang.com/5c37059d0001242406010478.jpg

这个是我的代码:


wx.request({


  url: 'https://api.scy.xieshou.org/',

  data: {

    method: 'Evaluation.submitBehaviorReport',

    v: '2',

    selected_filter:[

      {

        filterid: this.data.filter_id,

        filtername: this.data.filter_name

      }

    ],

    send_info:{

      gender: this.data.userData.gender,

      beh_time: this.data.userData.beh_time,

      age: this.data.userData.index,

      from_url:'',

      pid:'',

      cid:'',

      rid:''

    },

    behavior_result: [optionArr]

  },

  method: 'POST',

  header: {

    "content-type": "application/x-www-form-urlencoded"

  },

  success: function(res){

    console.log(res)

    _this.setData({

      report_id: res.data.data.report_id

    })

  }

})


慕少森
浏览 905回答 1
1回答

POPMUISE

你看看后台接受的格式是不是json格式的,因为你现在传过去的是"content-type": "application/x-www-form-urlencoded"
打开App,查看更多内容
随时随地看视频慕课网APP

相关分类

JavaScript