以文本方式查看主题 - Foxtable(狐表) (http://foxtable.com/bbs/index.asp) -- 专家坐堂 (http://foxtable.com/bbs/list.asp?boardid=2) ---- [求助]关于Json数据发送返回的帮助。 (http://foxtable.com/bbs/dispbbs.asp?boardid=2&id=186247) |
|||||||||||||||||||||||||||||||||||||||||||||
-- 作者:54292550 -- 发布时间:2023/4/16 13:23:00 -- [求助]关于Json数据发送返回的帮助。 接口说明: API地址:http://172.16.2.128:9090//API/PanDing/+入口函数 1 、接口函数:Insert_lxyg 函数定义 [HttpPost] [Route("Insert_lxyg")] public string Insert_lxyg([FromBody]xxx model) { JieKouController myclass = new JieKouController(); return myclass.SJZC_InsertZJ(model); } 调用参数:
返回参数:
返回格式:JSON ================================================================================== 以上是客户给的接口说明,怎样正确的和客户对接上? 写成这样不会了。。。数据没有传输过去。 Dim ur As String = "http://172.16.2.128:9090//API/PanDing/Insert_lxyg" Dim jo As New JObject jo("ShiYanSBM") = CStr("LGSYS01") jo("SheBeiBM") = CStr("XG-LT-01") jo("YangPinBM") = CStr("78946123") jo("YangPinZL") = CStr("Y") jo("ZhiJianSJ") = CStr("2897.38H") hc.Content = jo.ToString jo = JObject.Parse(hc.GetData) If jo("Result") = "成功" Then MessageBox.show("消息发送成功!") Else MessageBox.show(jo("Msg")) End If 谁帮忙看一下有什么问题? |
|||||||||||||||||||||||||||||||||||||||||||||
-- 作者:有点蓝 -- 发布时间:2023/4/16 20:22:00 -- Dim ur As String = "http://172.16.2.128:9090/API/PanDing/Insert_lxyg" Dim hc As New HttpClient(ur ) hc.FormData.Add("ShiYanSBM","LGSYS01") hc.FormData.Add("SheBeiBM","XG-LT-01")…… Dim ret As String = hc.getData() MessageBox.show(ret)
|