从HTML5的地理定位回调中调用Polymer({})函数中的this.push

时间:2016-11-22 15:50:28

标签: javascript polymer

_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不是函数。我该怎么办呢?

0 个答案:

没有答案