我正在通过此 javascript 代码进行 wcf 调用并在我的应用程序中取回数据..
function setCurrentResponseValue(response) {
var applicationData = null;
$.ajax({
type: "POST",
url: "ClientService.svc/REST/SetCurrentResponseValue",
contentType: "application/json; charset=utf-8",
data: JSON.stringify({ response: response }),
dataType: "json",
async: false,
success: function (msg) {
applicationData = msg;
},
error: 'An Error'
});
return applicationData;
}
我需要从后面的 C# 代码设置我的 svc 文件使用的会话变量。如何从后面的代码而不是上面的 ajax 调用调用我的 svc 文件中的方法?