0
Iam總共JS Newb,並試圖構建我的簡單JS代碼。目標是獲取用戶位置。結構JS - 變量爲空?
它的工作原理,但getUserCoordinates函數沒有返回值?我認爲這只是一個初學者的邏輯失敗?
var app = {
geocoder: null,
init: function() {
this.geocoder = new google.maps.Geocoder();
coordinates = this.getUserCoordinates();
console.log(coordinates); // empty??
return;
},
getUserCoordinates: function() {
if (navigator.geolocation) {
navigator.geolocation.getCurrentPosition(
function (coords) {
console.log(coords); // works Geocoder Object!
return coords; // the problem
}, // more code
感謝聽起來合乎邏輯,有沒有什麼好的解決方案呢? – opHASnoNAME
您可以使用回調函數(您傳遞給getUserCoordinates方法),或者從代表該值的函數返回一個[Promise](http://wiki.commonjs.org/wiki/Promises)並使用回調函數內部。 – Bergi