Die Beispiele in diesem Artikel beschreiben die grundlegende Verwendung des Singleton-Modus im JS-Modus. Teilen Sie es als Referenz mit allen. Die Details lauten wie folgt:
//singleton var SingletonTester = (function(){ function Singleton(options){ options = options || {}; this.name = "SingletonTester"; this.pointX = options.pointX || 6; this.pointY = options.pointY || 10; }; var instance; var _static = { name : "SingletonTester", getInstance : function(options){ if(instance === undefined){ instance = new Singleton(options) }; return instance; } }; return _static; })();
Ich hoffe, dass dieser Artikel für das JavaScript-Programmierdesign aller hilfreich sein wird.