Ajax json响应在POST方法中没有成功

时间:2013-05-13 06:48:30

标签: jquery jsonp google-analytics-api

当我使用jsonp数据类型时,我没有从ajax获得json响应/成功。但我得到了空白的回应。是GAPI的那个我得到这个问题或任何其他。我发现类似的问题 Not able to get the json response

这是我的jquery代码

$.ajax({ url: 'includes/gapi.apis.php',
         data: {action: 'keyword'},
         type: 'post',
         async:false,
         dataType: "jsonp",
         success: function(obj) {
         alert(obj);
         }

Php Code

$ga->requestReportData(ga_profile_id,array('keyword'),array('visits','pageviews'),array('-visits'),$filter,$startDate, $endDate, $startIndex, $maxResults);

    foreach($ga->getResults() as $result)
    {
        //echo $result->getKeyword()."-------------------".$result->getVisits()."<br>";
        $data[$i]['keyword']=$result->getKeyword();
        $data[$i]['visits']=$result->getVisits();
        $data[$i]['pages_visits']=round(($result->getPageviews())/$result->getVisits(),2);
        $i++;
    }echo json_encode($data);

1 个答案:

答案 0 :(得分:0)

试试这个。

$.ajax({
 type: 'POST',
  url:  "Your url",
  data: "{}",
  contentType: "application/json; charset=utf-8",
  dataType : "json"
  success : function (response) {
  alert(response.d);
 },
 error : function (response) {
  alert(response.d);
}
})

并且,确保您的代码隐藏功能是WBMETHOD。