0

関数をシングルトンに保つためのオブジェクトを作成し、それを使用して、互いに呼び出して通信するサンプルメソッドを作成しました..しかし、適切な結果が得られません..

誰でも私を修正します、私がここで定義した方法のシングルトン...

私のサンプルコード:

var obj = window[obj] || {}; //singleton

obj.nameIt = function(name){

    this.name = name;

    this.getName = function(){
        return this.name;
    }

}

obj.sayIt = function(name){

    this.name = name; var that = this;

    this.sayHello = function(){
        console.log("say" + this.name);
        that.getName();//how to get result from nameIt?
    }

}

var x = obj.nameIt("af");
console.log(x.getName());//says "undefined" - how to call it?

var y = obj.sayIt("xy");
console.log(y.sayHello());//says "undefined" - how to call it?

ここでjsfiddle

4

1 に答える 1