微信小程序:request前后端交互

一 request前后端交互

参考链接:https://www.cnblogs.com/xiaoyuanqujing/protected/articles/11644453.html

微信小程序:request前后端交互

 

 微信小程序:request前后端交互

 

 微信小程序:request前后端交互

 

基本样式

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

实际示例

1.wxml文件中

微信小程序:request前后端交互

 

 2.js文件

微信小程序:request前后端交互

 

 3.django后端如何获取

微信小程序:request前后端交互

 

微信小程序:request前后端交互

上一篇:解决金仓数据库KingbaseES缺少库文件的问题


下一篇:1_科普—什么是GNU?什么是GPL协议?GNU和Linux是怎么结合在一起的?