我正在使用 jquery ajax 来检索一些数据,但它失败了,下面是代码:
$.Webpic_Init = function(){
var type = 'default';
$.ajax({
url:SITE_PATH+"services/service.php?m=share&a=uploadwebpic&photo_type="+type,
type: "POST",
data:{ name: "John", location: "Boston" },
cache:false,
dataType: "json",
success:function(result){
alert(result);
},
error:function(){
alert('error');
}
});
}
这会提醒“错误”。但是,如果我将 url 参数更改为 'SITE_PATH+"services/service.php"',则会调度 'success' 事件。那么,如果我不想更改 url 参数,我该怎么办?