微信小程序和springboot后台交互,小程序如何传递参数后台如何接收,和一些报错问题

时间:2025-04-02 15:33:59

问题:我在小程序前端传了这些参数。既有普通参数又有json字符串。所以挺懵逼的。再小程序前端Content-type只能设置一种,如果我使用application/x-www-form-urlencoded,则会报Resolved [: Content type 'application/x-www-form-urlencoded;charset=UTF-8' not supported],如果使用application/json,会报Resolved [: Required String parameter 'openid' is not present],发的都是post请求。去网上搜了一下能不能一起使用发现得这样使用却,试了一下确实可以

wx.request({
          url: "http://127.0.0.1:8080/superadmin/judgecheckresult?scanCode=" + that.data.scanCode,  // 在 url 中传递 String 
          data: JSON.stringify(formData),  // 将 formData 转化成JSON对象
          method: 'POST',
          header: {'Content-Type': 'application/json'},  // http 请求是 JSON 数据格式
          success: function (res) {
            console.log("res")
            console.log(res)
          }
        })
 public String setUserInfo(@RequestParam("openid")String openid
                                ,@RequestParam("name")String name
								,@RequestParam("qq")String qq 
								,@RequestParam("wx")String wx
                                ,@RequestBody JSONObject lobalData){
openid: wx.getStorageSync('jiaoxue_OPENID'),
        globalData: JSON.stringify(app.globalData.userInfo),
        name: this.data.name,
        qq: this.data.tel,
        // school: ,
        // num: ,
        wx: this.data.year
//请求模板
wx.request({
  url: '', //仅为示例,并非真实的接口地址
  data: {
    x: '',
    y: ''
  },
  header: {
    'content-type': 'application/json' // 默认值
  },
  success (res) {
    console.log(res.data)
  }
})