我正在尝试使用Google Places API在半径1000米范围内请求伦敦市中心的所有地方,所需的输出类型为XML。
这是我使用JQuery的代码:
<!DOCTYPE html>
<html>
<head>
<script src="http://code.jquery.com/jquery-1.7.1.min.js"></script>
</head>
<body>
<script>
jQuery(document).ready(function(){
jQuery.ajax({
url: 'https://maps.googleapis.com/maps/api/place/search/xml',
dataType: 'xml',
type: 'GET',
data: {
key: 'MY KEY',
location: '51.526688,-0.123825',
radius: 1000,
sensor: 'false',
types: 'food'
},
success: function(data){
alert("success");
},
error: function(data){
alert("error");
}
});
});
</script>
</body>
</html>
不幸的是,我只收到error
消息。 Firebug控制台向我显示XML Parsing Error: no element found Location: moz-nullprincipal:{7577ff8b-21cb-40c5-824b-de812540f29e} Line Number 1, Column 1:
。
我已经获得了自己的API密钥并启用了Places API
。 (网站URL是“http:// localhost /”,因为我使用XAMPP编码本地。)
答案 0 :(得分:2)
您不能使用AJAX从不同的域请求资源,它受同源政策的限制。
使用maps-API获取结果。