1
一個谷歌的地方API搜索我試圖讓使用谷歌的地方API的地方在我的控制器:如何做angularjs控制器
$http.get("https://maps.googleapis.com/maps/api/place/radarsearch/json?location=51.503186,-0.126446&radius=5000&type=museum&key=MY_KEY")
.then(function(response) {
$scope.results = response.data;
console.log($scope.results);
});
可惜,這是行不通的。我的console.log後,我得到以下錯誤。
XMLHttpRequest cannot load https://maps.googleapis.com/maps/api/place/radarsearch/json?location=51.503…126446&radius=5000&type=museum&key=MY_KEY. No 'Access-Control-Allow-Origin' header is present on the requested resource. Origin 'http://localhost:9004' is therefore not allowed access.
順便說一句,這不是唯一的本地主機,因爲我已經嘗試在一個活的服務器相同。 什麼是谷歌angularjs的方式來實現這一目標?
你有沒有簡單地在你的index.html中添加谷歌地圖文件與所有的JavaScript文件? –
是的,我的谷歌裝載得很好。 –
以及爲什麼它們在Google鏈接和鍵= MY_KEY的末尾沒有數字。你不想在這裏發佈它? –