小程序 -网络请求post/get

发布时间:2023年12月18日

1.1网络请求的概念(post和get)

?

?1.2步骤

?

1.3?应用函数

js里面写,用bindtap绑在控件上,就不讲了

?

实例代码:

//发起get数据请求
  get_info(){
    wx.request({
    url:'https://www.escook.cn/api/get',
    //请求的接口地址,必须基于https协议//请求的方式
    method: 'GET',
    //发送到服务器的数据
    data: {name: 'zs',age: 22},
    
    success:(res)=>{
      console.log(res);
    }
    })
  },
    //发起post数据请求
    post_info(){
      wx.request({
      url:'https://www.escook.cn/api/post',
      //请求的接口地址,必须基于https协议//请求的方式
      method: 'POST',
      //发送到服务器的数据
      data: {name: 'zs',age: 22},
      
      success:(res)=>{
        console.log(res);
      }
      })
    },

?

文章来源:https://blog.csdn.net/weixin_46098612/article/details/134988201
本文来自互联网用户投稿,该文观点仅代表作者本人,不代表本站立场。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。