Jquery JSON google api返回“Uncaught SyntaxError:UnexpectedToken”

时间:2017-02-04 06:36:55

标签: javascript jquery json ajax jsonp

这是我的代码。我在@stackoverflow中尝试了每一个可能的问题和答案,但最终无法找到确切的解决方案。 任何帮助都会非常适合。

$(function(){
    $(".trx-location-row #trx-location").focusout(function(){
      var vurl = 'https://maps.googleapis.com/maps/api/place/details/json?placeid=ChIJCQDPsq9FlDkRjdvuicUg4eo&key=AIzaSyDBgKVgYEVbQxjkbAQ8DfGplN34L0UVPIw';
      $.ajax({
        type: 'GET',      
        url: vurl,                                                                                   
        dataType: 'jsonp',
        jsonp: false,
        jsonpCallback: "myJsonMethod",
        success: function() { 
          debugger
          console.log('Success!'); 
        },                                  
        error: function() { 
          console.log('Uh Oh!');
       },
      });
    });
})

0 个答案:

没有答案