数据请求
# 数据请求
需要在小程序的后台管理中配置请求域名
- 域名只支持 https 协议
- 域名不能使用 ip 地址或 localhost
- 域名必须经过 ICP 备案
# 网络请求
# get
Page({
btnHandle(){
wx.request({
url:'https://www.escook.cn/api/get',
method:'GET',
data:{
name:'zs',
age:22
},
success: (res)=>{ //请求成功之后的回调函数
console.log(res)
}
})
}
})
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
2
3
4
5
6
7
8
9
10
11
12
13
14
15
# post
Page({
btnHandle(){
wx.request({
url:'https://www.escook.cn/api/get',
method:'POST',
data:{
name:'zs',
age:22
},
success: (res)=>{ //请求成功之后的回调函数
console.log(res)
}
})
}
})
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
2
3
4
5
6
7
8
9
10
11
12
13
14
15
# 页面加载函数
onLoad()
编辑 (opens new window)
上次更新: 2023/02/07, 14:51:48