_handleResponse: function (data) {
navigator.geolocation.getCurrentPosition(function(position) {
lat = position.coords.latitude,
lng = position.coords.longitude;
this.push('thread.messages', {
latlong: lat+","+lng,
});
}, function() {
console.warn('ERROR(' + err.code + '): ' + err.message);
});
}
在上面,我收到一条错误,说push
不是函数。我该怎么办呢?