3

我习惯于这样写插件:

;(function($){jQuery.fn.myPlugin=function(options){
    var defaults={
        'property':value
    },
    o=$.extend({},defaults,options||{});

   // INSERT AND CACHE ELEMENTS
   var $Element=$('<div></div>');
   $Element.appendTo($('body'));

function funFunction(){
  // I have access to $Element!
 $Element.hide(500);
};

this.each(function(i){
     var $this=$(this);
});
return this;
});};})(jQuery);

我知道它并不完美,这就是为什么我现在正在尝试正确学习命名空间、更好的插件结构/模式。不幸的是,我读过的前几本书逐字引用了 jQuery 插件创作教程,因此并没有太大帮助。该教程似乎将所有内容都分开了,并且没有显示一个很好的组合示例,这就是我感到困惑的原因。在本教程中,它显示了命名空间示例。

jQuery 插件命名空间教程

(function( $ ){
  var methods = {
    init : function( options ) { 
    },
    show : function( ) {
    },
    hide : function( ) { 
    },
    update : function( content ) { 
    }
  };

  $.fn.tooltip = 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.tooltip' );
    }    
  };
})( jQuery );
// calls the init method
$('div').tooltip(); 

我了解结构以及如何访问命名空间对象,但是它显示了不包括任何命名空间的默认值/选项的另一个示例......因此,为了编写一个正确命名空间的插件的开头,具有默认值/选项并缓存我插入的 HTML 元素用于整个插件,我想出了以下内容。

正确的组合?

;(function($,window,document,undefined){
var myPlugin={
    // METHODS
    init:function(options){

    },
    buildElements:function(){ 
        var $Elements=$('<div id="myElem"></div>')
                    .appendTo($('body'));
       }
};

$.fn.myPlugin=function(method,options){
    var defaults={

    },
    options=$.extend({},defaults,options||{});

    myPlugin.buildElements();

    return this.each(function(){
        var $this=$(this);
        if(myPlugin[method]){
          return myPlugin[method].apply(this,Array.prototype.slice.call(arguments,1));
        }else if(typeof method==='object'||!method){
          return myPlugin.init.apply(this,arguments);
        }else{$.error('Method '+method+' does not exist on jQuery.myPlugin');};
    });
};})(jQuery);
  1. 显然,当我构建/插入 myElem 时,它只能在该方法中使用,而不能在任何其他方法中使用......我是在错误的地方构建它吗?

  2. 默认值/扩展是否在正确的位置?

  3. 如果我不想从插件外部访问方法,是否需要方法逻辑部分?

  4. 使用 .prototype 与 .fn 有什么好处吗?

非常感谢任何人和所有人!:)

4

1 回答 1

7

更仔细地查看“工具提示”示例插件。这是一个真正伟大的模式。

它完成了您需要的所有命名空间,并且已经是您习惯的类型,至少底部的通用“主管”块是 - 即这部分:

$.fn.tooltip = 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.tooltip' );
    }    
};

methods在简单的 javascript 术语中是一个私有变量,但它的属性被主管以一种非常聪明、非常规的方式公开为插件的方法。

请不要尝试将默认值/选项代码移出 init 方法。这将把一切都搞砸了!遵循久经考验且值得信赖的模式,一切都会好起来的。

编辑:

一定要遵守模式的其他方面:

  • 要维护 jQuery 对象的可链接性,请return this.each(function(){...})在每个方法中使用不返回特定结果的结构。
  • (通常),在 init 中,建立一个.data('pluninName', {...})对象来容纳在初始化时建立的任何数据,这些数据需要稍后由其他插件方法访问/修改/增强。

methods该模式只为插件本身(包含对象)提供了一个闭包;闭包的命名空间不能用于元素特定的数据(包括初始化选项),因此需要使用.data('pluninName', ...).

这些不仅仅是约定——它们绝对是使模式按预期工作的关键。

于 2012-09-28T02:18:29.127 回答