POST方法
前端:
//定义一个数组
var arr = ['a','b','c'];
//请求服务器
wx.request({
url: '',
method: 'POST',
data: {
list: JSON.stringify(arr)
},
success: function(res) {
console.log(res.data);
}
});
后端请求:
方法一:
$list = json_decode(I('post.list'), true);
方法二:
$list = json_decode($_POST['list'], true);
GET方法:
前端
//定义一个数组
var arr = ['a','b','c'];
wx.request({
url: '',
method: 'GET',
data: {
list: JSON.stringify(arr)
},
success: function(res) {
console.log(res.data);
}
});
后端:
方法一:
$list = json_decode(I('get.list'), true);
方法二:
$list = json_decode($_GET['list'], true);