gpt4 book ai didi

javascript - 在函数内部调用原型(prototype)方法不起作用

转载 作者:行者123 更新时间:2023-11-30 12:08:01 25 4
gpt4 key购买 nike


我正在尝试使用 JavascriptjQuery 创建一个画廊类

我有一些用于该画廊类的原型(prototype)函数,但是当我尝试在类中访问这些函数时,它显示错误。

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();

最佳答案

看了你的代码后,我发现了问题:

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

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

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

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

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

然而,在您的特定情况下,您正在重新定义原型(prototype):

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

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

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

这条路是potentially unsafe因为在您重新定义它之前,它最终会删除原型(prototype)中存在的任何其他内容。

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

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

关于javascript - 在函数内部调用原型(prototype)方法不起作用,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/34625874/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com