您的当前位置:首页正文

微信小程序发起 HTTPS 网络请求

2024-11-30 来源:个人技术集锦

示例代码

wx.request({
  url: 'example.php', //仅为示例,并非真实的接口地址
  data: {
    x: '',
    y: ''
  },
  header: {
    'content-type': 'application/json' // 默认值
  },
  success (res) {
    console.log(res.data)
  }
})

详细请参考链接:

显示全文