当前位置 : 主页 > 网页制作 > Dojo >

dojo学习记,调用webservice

来源:互联网 收集:自由互联 发布时间:2021-06-15
dojo中调用webservice方法 GetInfo为后台服务 [WebMethod] public string GetInfo(string id) { try { return json; } catch { return null; } } 前天调用方法 //读值 function initValue() { var xhrArgs = { url: "../../Services.asmx/G

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);         }

上一篇:dojo第一天
下一篇:dojo 柱状图
网友评论