背景:
这是一个简单的ajax请求从数据库获取数据,我的查询和服务器端代码工作正常。
问题:
当我在浏览器中放置GET URL时,它会显示正确的JSON响应,但是firebug(firefox extention)没有显示任何响应,并且会记录错误消息。
alert('success');
未显示
$('#loadOrderDetails').click(function () {
var id = document.getElementById("order_id").value;
var dataString = 'order_id=' + id ;
alert(dataString);
$.ajax({
type: "GET",
url: "index.php?route=new/orders/GetOrder",
data: dataString,
cache: false,
dataType: 'json',
success: function (data) {
alert ('success');
// my code to show data in table..
},
error: function (req, status, err) {
console.log('something went wrong', status, err);
}
})
});
有什么建议吗?
答案 0 :(得分:0)
谢谢大家,似乎我的问题是因为www,我在服务器座位上解决了它。