js 访问asmx接口「建议收藏」

2022-06-29 08:55:55 浏览数 (1)

大家好,又见面了,我是你们的朋友全栈君。

用C#写了一个接口,js需要用ajax访问

var jsonObj = new Object(); jsonObj[‘cid’] = cid; $.ajax({ type: “POST”, url: “/tv/hub.asmx/getDeviceLogs”, data: JSON.stringify(jsonObj), contentType: “application/json; charset=utf-8”, error: function (da) { alert(“error…” da.d); }, success: function (data) { if (data.d == “null”) { alert(“no data”); return; } var html = data.d; } }); });

1、ajax传给asmx的是string

2、asmx返回给ajax的是json

3、getDeviceLogs是函数接口名称

4、cid是接口参数,此接口只定义了一个参数,如果需要多个参数,直接另外添加一个json字段

5、如果有非url字符,需要转码,需要先 encodeURI($(“#url”).val());(未验证)

发布者:全栈程序员栈长,转载请注明出处:https://javaforall.cn/132521.html原文链接:https://javaforall.cn

0 人点赞