我必须从 Web 服务中获取一个 Json 对象,但我还没有找到任何关于它的文档。我必须发布一个sql语句才能得到它。有谁知道这一切是否可行?
好的,谢谢您的回答。首先,Web 服务有一个 GetJsonString “metod”。我正在尝试这段代码:
$(document).ready(function () {
$.ajax({
type: 'Get',
url: 'http:********************************.asmx?op=GetJSONString',
success: function(returnedJson) {
alert(returnedJson)
}
});
});
我得到这个错误:
XMLHttpRequest cannot load http:/***********asmx?op=GetJSONString. Origin null is not allowed by Access-Control-Allow-Origin.