如何在ajax中调用curl命令

时间:2017-02-17 09:52:57

标签: jquery ajax curl

我在下面使用json响应。我没有得到任何输出。请找错误。

<script>
$.ajax({ 
    url : "https://allbills.in/api/operator-detail",
    type : 'GET',
    data: {  
       id: "41263087",
       token: "4MCquK7ro2HVXQ8zjwmIPs5vBlg9RbDpYSaFtLiy",
       mobile:"9739733333" 
    }
    dataType : 'json',
    contentType : 'application/json',
    success : function(data) {
        console.log(JSON.stringify(data));
        alert(JSON.stringify(data));
    },
    error : function() {
        console.log("Cannot get data");
    }
    alert("hi");
});
</script>

jsfiddle link please check here

0 个答案:

没有答案