dojo学习记,调用webservice

前端之家收集整理的这篇文章主要介绍了dojo学习记,调用webservice前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。

dojo中调用webservice方法

GetInfo为后台服务

[WebMethod]
public string GetInfo(string id)
{
try
{

return json;
}
catch { return null; }
}

前天调用方法

//读值 function initValue() { var xhrArgs = { url: "../../Services.asmx/GetInfo",handleAs: "json",headers: { "Content-Type": "application/json" },postData: dojo.toJson({ "id": 1}),load: function (respone) { ShowValue(respone); },error: function (error) { alert("初始化值:" + error.message); } }; dojo.xhrPost(xhrArgs); }

原文链接:https://www.f2er.com/dojo/291358.html

猜你在找的Dojo相关文章