美文网首页
微信小程序与.Net结合----POST请求

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

作者: wfaceboss | 来源:发表于2018-09-14 08:30 被阅读11次

    小程序代码例子:

    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"]接收来自客户端(小程序) 的参数。

    相关文章

      网友评论

          本文标题:微信小程序与.Net结合----POST请求

          本文链接:https://www.haomeiwen.com/subject/bnyngftx.html