转自:https://idig8.com/2018/08/19/xiaochengxujavashizhanxiaochengxuhehoutaiapitongxin28/
小程序和后台api通信
- 小程序不能直接访问后台接口必须通过请求的方式
- 通过内网穿透实现暴露到公网
- ngrok ngrok.com
如何使用内网穿透
- 登录ngrok网站
>https://ngrok.com
- 介绍
>用户直接穿透防火墙,到云端做到互相的访问。
- 如何使用
>注册
#ngrok http 指定端口
ngrok http 8080
request
wx.request({
url: 'test.php', //仅为示例,并非真实的接口地址
data: {
x: '' ,
y: ''
},
header: {
'content-type': 'application/json' // 默认值
},
success: function(res) {
console.log(res.data)
}
})
PS:下一章节开始实战学习,从数据库的表开始设计。