微信小程序与.Net结合----POST请求

2018-09-14  本文已影响11人  wfaceboss

小程序代码例子:

wx.request({
url: 'host'+'controller/action',//请求的服务端链接
data: { key: value},//参数
method: 'POST',//POST请求方式
header:{//配置头文件
"Content-Type": "application/x-www-form-urlencoded"
},
success: function (res) {},
});

小程序中重点是配置如下:

method: 'POST',
header:{
"Content-Type": "application/x-www-form-urlencoded"
},

.Net服务端C#代码例子:

[HttpPost]
       public ActionResult WX()
       {
           var tel = Request.Form["phone"];//接受post请求
           return Content(tel);  
       }

在服务端重点是使用 Request.Form["key"]接收来自客户端(小程序) 的参数。

上一篇下一篇

猜你喜欢

热点阅读