Проблемы с передачей обратного вызова на мой плагин jquery - PullRequest
2 голосов
/ 08 марта 2012

Я пытаюсь разработать плагин, который принимает обратный вызов в качестве первого аргумента в init. Я пытался изменить код плагина из официального учебника . Я не могу понять, почему здесь что-то не так:

Плагин:

(function( $ ){

    var methods = {

        init : function( callback, options ) { 

            // Create some defaults, extending them with any options that were provided
            var settings = $.extend( {
                'location'         : 'top',
                'background-color' : 'blue'
                }, options);


            return this.each(function() {        

                $this.click(function(e) {

                    e.stopPropagation();
                    var $target = $(e.target);
                    if (callback) 
                        callback($target);
                });

            });
        },

    };

    $.fn.myplugin = function( method ) {

        // Method calling logic
        if ( methods[method] ) {
            return methods[ method ].apply( this, Array.prototype.slice.call( arguments, 1 ));
        } else if ( typeof method === 'object' || ! method ) {
            return methods.init.apply( this, arguments );
        } else {
            $.error( 'Method ' +  method + ' does not exist on jQuery.myplugin' );
        }

    };

})( jQuery );

Вызов плагина:

// Create callback function
var callback = function(){alert('hey');};

$('#my-control').myplugin(callback,{'width':'600px'}); 

Ошибка:

Метод function () {alert ('hey');} не существует в jQuery.myplugin

1 Ответ

2 голосов
/ 08 марта 2012

Эта строка:

else if ( typeof method === 'object' || ! method ) {

вызывает условие $.error (в следующем предложении else), так как вы проверяете имя метода или объект параметров и не делали 't для передачи аргумента типа function.

Я бы порекомендовал сделать параметр callback частью вашего options объекта:

(function($) {

    var methods = {

        init: function(options) {
            console.dir(arguments);
            // Create some defaults, extending them with any options that were provided
            var settings = $.extend({
                'location': 'top',
                'background-color': 'blue'
            }, options);


            return this.each(function() {

                $(this).click(function(e) {

                    e.stopPropagation();
                    var $target = $(e.target);
                    if (settings.callback) settings.callback($target);
                });

            });
        },

    };

    $.fn.myplugin = function(method) {

        // Method calling logic
        if (methods[method]) {
            return methods[method].apply(this, Array.prototype.slice.call(arguments, 1));
        } else if (typeof method === 'object' || !method) {
            return methods.init.apply(this, arguments);
        } else {
            $.error('Method ' + method + ' does not exist on jQuery.myplugin');
        }

    };

})(jQuery);

Использование:

var callback = function(){alert('hey');};
$('#my-control').myplugin({'width':'600px', callback: callback}); 

Пример: http://jsfiddle.net/n66mU/

Добро пожаловать на сайт PullRequest, где вы можете задавать вопросы и получать ответы от других членов сообщества.
...