将 json 参数传递给 wcf 休息服务后方法
本文关键字:服务 方法 wcf json 参数传递 | 更新日期: 2023-09-27 17:55:26
我是WCF世界的新手。我正在尝试对 WCF 服务方法进行 POST 调用并将 json 数据传递给它。
我的代码片段如下:
Ajax POST 调用:
function PostJSON() {
var form_data = {
"req_limitmsg_header": {
"brch_code": "784",
"rqst_id": "00129538",
"tnx_id": "20150200008695",
"inp_user_id": "UAT01",
"inp_dttm": "20150311183413",
"Func_code": "6010 ",
"idms_tnx_type_code": "N",
"Spaces": "12",
"prod_ref_id": "12"
} ,
"req_limitmsg_detail": [
{
"jrn_exc_cur_code": "0000",
"jrn_exc_act_no": "019000090000",
"sign of exc_acpt_amt": "+",
"exc_acpt_amt": "0000000000000000",
"sign of jrn_exc_amt": "+",
"jrn_exc_amt": "0000000001500000"
},
{
"jrn_exc_cur_code": "0000",
"jrn_exc_act_no": "019000090000",
"sign of exc_acpt_amt": "+",
"exc_acpt_amt": "0000000000000000",
"sign of jrn_exc_amt": "+",
"jrn_exc_amt": "0000000001500000"
}
]
};
$.ajax({
cache: 'false',
async: 'false',
type: 'POST',
url: "http://localhost:10647/JsonTest.svc/Rest/RequestLimitCheckService",
data: JSON.stringify(form_data),
contentType: "application/json; charset=utf-8",
dataType: 'json',
crossDomain: true,
processData: true,
success: function (data, status, jqXHR) {
if(data != null)
{
alert("NOT NULL");
alert(data.toString());
}
else
{
alert("NULL");
alert(data.toString());
alert(status.toString());
}
},
error: function (response) {
alert(response);
}
});
}
WCF 方法:
[WebInvoke(Method = "POST", ResponseFormat = WebMessageFormat.Json,RequestFormat=WebMessageFormat.Json,BodyStyle = WebMessageBodyStyle.Wrapped,
UriTemplate = "RequestLimitCheckService")]
public string RequestLimitCheck(string form_data)
{
//do somethig
}
WCF 接口
[OperationContract]
string RequestLimitCheck(string form_data);
正在发生的事情是我总是得到空字符串。我也尝试指定查询字符串参数样式,但它没有用。只有当我指定类来接受 json 数据时,它才能正常工作。如果我做错了什么或遗漏了什么,请告诉我。
删除 JSON.stringify(form_data) 并改用 form_data 并重试。此外,您还需要指定所需的请求格式类型。