-1
我搜索了每個主題,但沒有找到答案。 I'm只是想從中得到地址數據在我的應用離子, 但總是得到這樣的:不要從PHP-Server/Ionic應用程序獲取JSON數據 - AngularJS
{"$$state":{"status":0}}
I'm一個工廠工作:
.factory('Markers', function($http) {
var markers = [];
return {
getMarkers: function(){
return $http.get("http://geofence.obcc-dd.webseiten.cc/marian/markers.php").then(function(response){
markers = response;
return markers;
});
} }})
而這個控制器 - 代碼:
.controller('MapCtrl', function($scope, $state, $cordovaGeolocation, Markers) {
var options = {timeout: 10000, enableHighAccuracy: true};
$cordovaGeolocation.getCurrentPosition(options).then(function(position){
console.log("Data:");
console.log(Markers.getMarkers()); //here the 0-state appears...
var latLng = new google.maps.LatLng(position.coords.latitude, position.coords.longitude);
我不能工作,不能使用所需的數據。 請幫我 - 我嚇壞了......;(