我在下面使用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>