当前位置:   article > 正文

微信小程序post和get请求_微信小程序 get请求

微信小程序 get请求

后台接口的连接
1、数据传递post
主要声明数据类型 ‘content-type’: ‘application/json’

Component({
    methods: {
        compare(e){
       wx.request({
           method:'POST',
         url: 'http://ip:端口/cs/getProductInfo',
         data:{'code':'12'},
         header: {
            'content-type': 'application/json'
          },
         success:function(res){
             console.log(res)
         }
       })
    },
}

})
  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 7
  • 8
  • 9
  • 10
  • 11
  • 12
  • 13
  • 14
  • 15
  • 16
  • 17
  • 18

2、后台

  @RequestMapping("/getProductInfo")
    public void getProductInfo(HttpServletRequest request,@RequestBody Map<String,String> param) throws Exception {
      //数据在param中
    }
  • 1
  • 2
  • 3
  • 4

3、数据获取


Component({
    methods: {
    compareb(e){
        // 发起GET请求
        wx.request({  
            url: 'http://192.168.1.47:90/cs/yangshiheibai', 
            success: function (res) {    
                 console.log(res.data);  
            },  
            fail: function (error) {  
                console.error('请求失败', error);  
            }
        });
    }
}

})
  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 7
  • 8
  • 9
  • 10
  • 11
  • 12
  • 13
  • 14
  • 15
  • 16
  • 17
  • 18
声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/小丑西瓜9/article/detail/479776
推荐阅读
相关标签
  

闽ICP备14008679号