所以我有一个主干视图,我有这个方法
inscription: function() {
var self = this;
navigator.geolocation.getCurrentPosition(function(position) {
//I need to use self here because the context of this function
//is not my Backbone View
如何在 getCurrentPosition 回调中使用它?