私たちは仕事でいくつかの需要の問題を解決するために関数を作成することがよくあります。以下は、個人が仕事でまとめた関数の作成方法です。あなたはどれくらい知っていますか?
function sayHello(){ console.log('hello'); } function leave(){ console.log('goodbye'); } //test sayHello();
要件を完了するには、すぐに関数を宣言します
var sayHello = function(){ console.log('hello'); } var leave = function(){ console.log('goodbye'); } //test leave();
あらゆるリクエストに応答し、解決する関数式番号
var Action = { sayHello : function(){ console.log('hello'); }, leave : function(){ console.log('goodbye'); } } //test Action.sayHello();
メソッド オブジェクト クラスの作成がよりわかりやすくなります
var Action = function(){}; Action.sayHello = function(){ console.log('hello'); } Action.leave = function(){ console.log('goodbye'); } //test Action.sayHello();
シングルトンに属性メソッドを追加し、名前空間を浄化します
var Action = function(){ return { sayHello : function(){ console.log('hello'); }, leave : function(){ console.log('goodbye'); } } } // //test var a = Action(); a.leave();
新しいオブジェクトを返すと、できることがさらに増えます
var Action = function(){}; Action.prototype.sayHello = function(){ console.log('hello'); } Action.prototype.leave = function(){ console.log('goodbye'); } //test var a = new Action(); a.sayHello();
プロトタイプ チェーンは複数の作成を防止するポイント
var Action = function(){}; Action.prototype = { sayHello : function(){ console.log('hello'); }, leave : function(){ console.log('goodbye'); } } //test var a = new Action(); a.leave();
オブジェクトをプロトタイプに割り当てると、見た目がすっきりします
var Action = function(){ this.sayHello = function(){ console.log('hello'); } this.leave = function(){ console.log('goodbye'); } } //test var a = new Action(); a.leave();
クラス内に属性を追加することを忘れないでください
Function.prototype.sayHello = function(){ console.log('hello'); } Function.prototype.leave = function(){ console.log('leave'); } //test var f = function(){}; f.sayHello();
基本クラスのプロトタイプ拡張、新しいスペース
Function.prototype.addMethod = function(name, fn){ this[name] = fn; } var methods = function(){}; methods.addMethod('sayHello', function(){ console.log('hello'); }); methods.addMethod('leave', function(){ console.log('leave'); }); //test methods.sayHello();
一般的な定義メソッドの関数がより使いやすくなりました
Function.prototype.addMethod = function(name, fn){ this.prototype[name] = fn; } var Methods = function(){}; Methods.addMethod('sayHello', function(){ console.log('hello'); }); Methods.addMethod('leave', function(){ console.log('leave'); }); //test var a = new Methods(); a.leave();
プロトタイプの割り当てにクラス操作を使用することもできます
Function.prototype.addMethod = function(name, fn){ this[name] = fn; return this; } var methods = function(){}; methods.addMethod('sayHello', function(){ console.log('hello'); }).addMethod('leave', function(){ console.log('leave'); }); //test methods.leave();
チェーン操作の何が問題なのか
Function.prototype.addMethod = function(name, fn){ this.prototype[name] = fn; return this; } var Methods = function(){}; Methods.addMethod('sayHello', function(){ console.log('hello'); }).addMethod('leave', function(){ console.log('leave'); }); //test var a = new Methods(); a.leave();
プロトタイプチェーン = 一歩先へ
Function.prototype.addMethod = function(obj){ for(var key in obj){ this[key] = obj[key]; } } var methods = function(){}; methods.addMethod({ sayHello : function(){ console.log('hello'); }, leave : function(){ console.log('goodbye'); } }); //test methods.leave();
一度にさらに多くのことを実行するにはオブジェクトを追加します
Function.prototype.addMethod = function(obj){ for(var key in obj){ this.prototype[key] = obj[key]; } } var Methods = function(){}; Methods.addMethod({ sayHello : function(){ console.log('hello'); }, leave : function(){ console.log('goodbye'); } }); //test var a = new Methods(); a.leave();
プロトタイプの何が問題なのか
Function.prototype.addMethod = function(obj){ for(var key in obj){ this[key] = obj[key]; } return this; } var methods = function(){}; methods.addMethod({ sayHello : function(){ console.log('hello'); } }).addMethod({ leave : function(){ console.log('goodbye'); } }); //test methods.leave();
機能的に追加されたオブジェクトもチェーンできます
Function.prototype.addMethod = function(obj){ for(var key in obj){ this.prototype[key] = obj[key]; } return this; } var Methods = function(){}; Methods.addMethod({ sayHello : function(){ console.log('hello'); } }).addMethod({ leave : function(){ console.log('goodbye'); } }); //test var a = new Methods(); a.leave();
クラスチェーン操作ではさらに多くのことができます
Function.prototype.addMethod = function(){ if(arguments.length < 1) return; var tostring = Object.prototype.toString; if(tostring.call(arguments[0]) === '[object Object]'){ for(var key in arguments[0]){ this[key] = arguments[0][key]; } }else if(typeof arguments[0] === "string" && tostring.call(arguments[1]) === '[object Function]'){ this[arguments[0]] = arguments[1]; } return this; }
関数を追加してカプセル化します
Function.prototype.addMethod = function(){ if(arguments.length < 1) return; var tostring = Object.prototype.toString; if(tostring.call(arguments[0]) === '[object Object]'){ for(var key in arguments[0]){ this.prototype[key] = arguments[0][key]; } }else if(typeof arguments[0] === "string" && tostring.call(arguments[1]) === '[object Function]'){ this.prototype[arguments[0]] = arguments[1]; } return this; }
クラシックな追加でパーソナライゼーションを追求
Function.prototype.addMethod = function(){ if(arguments.length < 1) return; var cout = 0, tostring = Object.prototype.toString, that; if(typeof arguments[0] === "boolean" && arguments[0]){ cout++; that = this; }else{ that = this.prototype; } if(tostring.call(arguments[cout]) === '[object Object]'){ for(var key in arguments[cout]){ that[key] = arguments[cout][key]; } }else if(typeof arguments[cout] === "string" && tostring.call(arguments[cout + 1]) === '[object Function]'){ that[arguments[cout]] = arguments[cout + 1]; } return this; } //text var Text1 = function(){}; Text1 .addMethod('sayHello', function(){console.log('last say hello!')}) .addMethod('leave', function(){console.log('last goodbye!')}); var t = new Text1(); t.sayHello(); t.leave(); var test2 = function(){}; test2 .addMethod(true, 'sayHello', function(){console.log('last say hello!')}) .addMethod(true, 'leave', function(){console.log('last goodbye!')}); test2.sayHello(); test2.leave();
パーソナライゼーションを追求します。理由を説明する必要はありません
以上がこの記事の全内容です。皆さんに気に入っていただければ幸いです。