プラグインからメソッド内のサブメソッドにアクセスするにはどうすればよいですか? たとえば、メソッド内init
のメソッドにアクセスしたいのですが、page
manage
$this.cms(manage.page); // ReferenceError: manage is not defined
基本構造、
(function($){
var methods = {
defaults: function(options) {
// Default options.
var defaults = {
setup: {
directory: ""
}
}
// Always leave this line here.
var options = $.extend(defaults, options);
// Return the processed options.
return options;
},
init : function( options ) {
// Must declare a this as the plugin's root itself.
var $this = this;
// Call the local method from the plugin itself to get the processed options.
var o = $this.cms('defaults',options);
//alert("nothing to load");
$this.cms(manage.page);
},
manage : {
page: function(options){
// Must declare a this as the plugin's root itself.
var $this = this;
// Call the local method from the plugin itself to get the processed options.
var o = $this.cms('defaults',options);
alert("page method");
},
menu: function(options){
}
},
add : function( options ) {
},
erase : function( options ) {
},
remove: function(object,options) { // to be developed.
}
};
$.fn.cms = function( method ) {
// @reference: http://docs.jquery.com/Plugins/Authoring#Namespacing
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 ); // always change 'init' to something else if you different method name.
} else {
$.error( 'Method ' + method + ' does not exist on jQuery.cms' );
}
return this; // this is needed to ensure chainability @reference: http://stackoverflow.com/questions/14008121/jquery-namespace-how-to-pass-default-options-from-one-method-to-the-subsequence
};
})(jQuery);
それは可能ですか、それとも他のより良い方法ですか?親メソッドの中に子メソッドを入れたいだけです。