如何使用jquery从rest URL获取响应

时间:2014-06-03 12:03:43

标签: javascript jquery

我有一个网址https://aua.maharashtra.gov.in/aua/rest/checkauastatus

当我在浏览器中访问URL时,我得到了一个XML响应。我想使用Javascript或jQuery在String中收集响应。我尝试了很多东西,但没有任何效果。

请帮我用字符串获取响应。

3 个答案:

答案 0 :(得分:0)

试试这个:

$.ajax({
   type:'POST',
   url:'https://aua.maharashtra.gov.in/aua/rest/checkauastatus',
   success: function(response)
   {
      alert(response);
   }

看看您的预期响应是否即将到来。 希望这会有所帮助。

答案 1 :(得分:0)

如果您使用 different domain 调用ajax,则ajax将无效,您必须调用服务器并收集数据。例如,使用 curl, then return as response 。如果支持,您也可以使用jsonp

答案 2 :(得分:0)

如果您尝试向其他域发出请求,请使用以下代码作为参考。

    $.ajax({
            url: 'https://aua.maharashtra.gov.in/aua/rest/checkauastatus',
            dataType: 'jsonp',
            jsonpCallback: 'dataResult',
            jsonp: 'callback',
        });
   function dataResult(data) {
       //Access your data here.
   };