调用函数内部的原型方法不起作用

时间:2016-01-06 04:54:52

标签: javascript jquery oop prototype


我正在尝试使用 Javascript jQuery 创建一个图库类

我为该库类提供了一些原型函数,但是当我尝试在类中访问这些函数时,它显示错误。

Uncaught TypeError: Gallery.start is not a function

My JSfiddle Link

这是我的Javascript:

/**
 *
 * @param options should be object of following
 * options.images Array of gallery images URL
 * options.start slide starting point
 * options.autoPlay This option will be false by default
 *
 */
function Gallery(options) {
  var _this = this;
  var galleryOptions = options;

  function randomString(len, charSet) {
    var ranString = '';
    var randomPoz;
    charSet = charSet || 'ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789';
    for (var i = 0; i < len; i++) {
      randomPoz = Math.floor(Math.random() * charSet.length);
      ranString = ranString + charSet.substring(randomPoz, randomPoz + 1);
    }
    return ranString;
  }

  function addThumbnail(imgSrc) {
    return '<li class="thumbnail__list"><img src="' + imgSrc + '" class="thumbnail__list-img" /></li>';
  }

  function renderThumbnail(imgArr) {
    var html = [];
    if (imgArr) {
      $.each(imgArr, function(i, v) {
        html.push(addThumbnail(v));
      });
    }
    return '<ul class="gallery__thumbnail__container">' + html.join('') + '</ul>';
  }

  function getPlaceholder() {
    return 'dummy.jpg';
  }

  function disableNext(thisObj) {
    thisObj.galleryElement.find('.next').addClass('disabled');
  }

  function disablePrev(thisObj) {
    thisObj.galleryElement.find('.prev').addClass('disabled');
  }

  function enableNext(thisObj) {
    thisObj.galleryElement.find('.next').removeClass('disabled');
  }

  function enablePrev(thisObj) {
    thisObj.galleryElement.find('.prev').removeClass('disabled');
  }

  function togglePrevNext(self) {
    if (self._opt.currIndex === (self._opt.imagesLength)) {
      disableNext(self);
    } else {
      enableNext(self);
    }
    if ((self._opt.currIndex - 1) === 0) {
      disablePrev(self);
    } else {
      enablePrev(self);
    }
  }

  function controls() {
    var html = [];
    html.push('<div class="prev sz-icon-arrow-left"></div>');
    html.push('<div class="next sz-icon-arrow-right"></div>');
    return '<div class="gallery__controls">' + html.join('') + '</div>';
  }

  function bindClickEvents(galleryElement) {
    galleryElement.on('click', '.start', function() {
      _this.start();
    });
    galleryElement.find('.stop').on('click', function() {
      _this.stop();
    });
    galleryElement.find('.prev').on('click', function() {
      _this.prev();
    });
    galleryElement.find('.next').on('click', function() {
      _this.next();
    });
    galleryElement.find('.thumbnail__list').on('click', function() {
      _this.goTo(Number($(this).index()) + 1);
    });
  }

  function checkOptions(option) {
    var opt = option;
    opt.images = (opt.images.length) ? opt.images : getPlaceholder();
    opt.thumbnail = (opt.thumbnail) ? true : false;
    opt.fullScreen = (opt.fullScreen) ? true : false;
    opt.container = (opt.fullScreen) ? 'body' : opt.container;
    opt.container = (opt.container) ? opt.container : 'body';
    opt.autoPlay = (opt.autoPlay) ? true : false;
    opt.start = (opt.start && opt.start <= Number(opt.images.length)) ? opt.start : 1;
    return opt;
  }

  Gallery.init = function() {
    var html;
    _this._opt = checkOptions(galleryOptions);
    _this._opt.imagesLength = Number(_this._opt.images.length);
    _this._opt.currIndex = Number(_this._opt.start);
    _this._opt.elementName = 'gallery--' + randomString(5, 'SZgallery');
    if (_this._opt.fullScreen) {
      html = '<div class="pop-up__model ' + _this._opt.elementName + '">' +
        '<div class="pop-up__model-table">' +
        '<div class="pop-up__model-cell">' +
        '<div class="gallery"><div class="pop-up__model-content">' +
        '<div class="gallery__inner-wrapper"></div>' +
        '</div></div>' +
        '</div></div>' +
        '</div>';
      $(_this._opt.container).append('', html);
      if (_this._opt.thumbnail) {
        $('.pop-up__model-content').append('', '<div class="thumbnail__list-wrapper">' + renderThumbnail(options.images) + '</div>').append('', controls());
      }
    } else {
      $(_this._opt.container).append('', '<div class="gallery gallery--hidden ' + _this._opt.elementName + '"></div>');
    }
    _this.galleryElement = $('.' + _this._opt.elementName);
    if (_this._opt.fullScreen) {
      _this.galleryElement.find('.gallery__inner-wrapper').append('', '<div class="gallery__img-holder">' +
        '<img class="gallery__img-preview" src="' + _this._opt.images[_this._opt.start - 1] + '"/>' +
        '</div>');
    } else {
      _this.galleryElement.append('', '<div class="gallery__img-holder">' +
        '<img class="gallery__img-preview" src="' + _this._opt.images[_this._opt.start - 1] + '"/>' +
        '</div>');
    }
    if (_this._opt.thumbnail) {
      _this.galleryElement.append('', renderThumbnail(options.images)).append(controls());
    } else {
      _this.galleryElement.append('', controls());
    }

    if (_this._opt.autoPlay) {
      Gallery.start();
    }
    bindClickEvents(_this.galleryElement);
  };

  Gallery.prototype = {
    start: function() {
      _this.goTo(_this._opt.currIndex);
      _this.galleryElement.removeClass('gallery--hidden');
      console.log('started', _this._opt);
      if (_this._opt.fullScreen) {
        $('.pop-up__model').addClass('is_visible');
      }
    },
    stop: function() {
      _this.galleryElement.addClass('gallery--hidden');
    },
    next: function() {
      if (_this._opt.currIndex <= (_this._opt.imagesLength - 1)) {
        _this._opt.currIndex++;
        _this.goTo(_this._opt.currIndex);
      }
    },
    prev: function() {
      if ((_this._opt.currIndex - 1) !== 0) {
        _this._opt.currIndex--;
        _this.goTo(_this._opt.currIndex);
      }
    },
    goTo: function(imgNo) {
      var thumbnail;
      _this._opt.currIndex = Number(imgNo);
      if (_this._opt.images[imgNo - 1]) {
        _this.galleryElement.find('.gallery__img-preview').attr('src', _this._opt.images[imgNo - 1]);
      }
      if (_this._opt.thumbnail) {
        thumbnail = _this.galleryElement.find('.thumbnail__list');
        thumbnail.removeClass('active');
        thumbnail.eq(imgNo - 1).addClass('active');
      }
      togglePrevNext(_this);
    },
    destroy: function() {
      console.log('destroyed');
    }
  };

  return Gallery;
}

var imgArr = ['images/placeholder-1.png', 'images/placeholder-2.png', 'images/placeholder-3.jpg', 'images/placeholder-4.jpg'];


var hotelPhotosGallery = new Gallery({
  images: imgArr,
  autoPlay: true,
  container: '.photo-list'
});
hotelPhotosGallery.init();

2 个答案:

答案 0 :(得分:2)

看了一下代码后,我发现了问题:

if (_this._opt.autoPlay) {
  Gallery.start(); // This method doesn't exist on a non instantiated object
}

您正在尝试在函数本身上调用方法,而不是该函数实例原型上的方法(使用new实例化)。

但是,原型方法在非实例化项上不可用,因为默认情况下函数中的this会附加到全局对象。使用new时,this实际上成为一个新对象,并从function隐式返回,从而创建一个新实例。 More about using function constructors

通常,这可以通过使用上下文(即this)而不是函数名来修复:

if (_this._opt.autoPlay) {
  this.start(); // Use the context of the instantiated Gallery
}

在您的特定情况下,您重新定义原型:

Gallery.prototype = { ... } // You are overwriting the prototype object

而不是使用JS引擎已经为您准备的那个并在其上添加方法:

// add methods directly on the prototype
Gallery.prototype.method1 = // ...
Gallery.prototype.method2 = // ...

这种方式是potentially unsafe,因为它会在重新定义原型之前删除原型中存在的任何其他内容。

如果您不关心这一点,并希望保持代码的正确性,您也可以通过显式调用原型来访问您的方法:

if (_this._opt.autoPlay) {
  Gallery.prototype.start(); // Explicitly call the prototype, since you already defined it
}

答案 1 :(得分:1)

你没有正确地称呼它。如果你需要调用原型函数,它必须像

  

Gallery.prototype.start()

如果您尝试实现特殊行为(基于对象),那么它应该像this。这里还有一些在JavaScript

中模拟课程的不同方法
相关问题