小程序代码例子:
wx.request({
url: 'host'+'controller/action',//请求的服务端链接
data: { key: value},//参数
method: 'GET',,//GET请求方式
header:{//默认值也是该头文件
'Content-Type': 'application/json'
},
success: function (res) {},
});
小程序中重点是配置如下:
method: 'GET',
header:{
'Content-Type': 'application/json'
}
.Net服务端C#代码例子:
public ActionResult WX()
{
var tel = Request.QueryString["key"];//接受get请求
return Content(tel);
}
在服务端重点是使用 Request.QueryString["key"]接收来自客户端(小程序) 的参数。