Javascript and singleton pattern

为君一笑 提交于 2020-01-07 09:47:15

问题


I am reading the book by Addy Osmani book, Learning Javascript design patterns. http://addyosmani.com/resources/essentialjsdesignpatterns/book/

I have created a file called singleton.js it contains:

var mySingleton = (function() {
var instance;

function init() {

    var privateRandomNumber = Math.random();

    return {
        getRandomNumber : function() {
            return privateRandomNumber;
        }
};


return {
    getInstance : function() {
        if (!instance) {
            instance = init();
        }
        return instance;
    }
};


})();

I have a file that uses this mySingleton class, in that file I have

var mySin = require('./util/ss_client');
var singleB = mySin.getInstance();

I get a compile error saying var singleB = mySin.getInstance();

I missed something in the ss_client file to export mySingleton class?


回答1:


Yes, you need to export mySingleton by assigning it to module.exports. You also have a syntax error in your code (one of your braces is in the wrong place). Fixing those two things, you get:

var mySingleton = (function() {
  var instance;

  function init() {
    var privateRandomNumber = Math.random();

    return {
      getRandomNumber : function() {
        return privateRandomNumber;
      }
    };
  }

  return {
    getInstance : function() {
      if (!instance) {
        instance = init();
      }
      return instance;
    }
  };

})();

module.exports = mySingleton;


来源:https://stackoverflow.com/questions/20061157/javascript-and-singleton-pattern

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!