1

ECMA6 で WeakMap を使用しているときに、奇妙なシナリオに直面しています。私は次のようなクラスを書いています

'use strict';
class WeekMaptest {

    constructor(options){
        console.log("constructor");
        this.weekMap = new WeakMap();
        this._init(options);
    }
    _init(options) {
        console.log("init called");
        var privateProps = {
            name: options.name,
            email: options.email
        };
        this.weekMap.set(this, privateProps);
    }

    getName(){
        return this.weekMap.get(this).name;
    }


}

このクラスを呼び出してオブジェクトをインスタンス化する

var obj = new WeekMaptest({name: 'Rohit', email: 'rohit.choudhar@gmail.com'});

アウトプットはこちら

console.log(obj.getName());
Output : Rohit

console.log(obj.weekMap.get(obj).name);
Output : Rohit

console.log(obj.weekMap.set(obj).name = 'I mena');
Output : I mena

console.log(obj.weekMap);
Output: WeakMap { name: 'I mena' }

console.log(obj.weekMap.get(obj).name);
Error:
/home/bll/bll-jb/server/lib/ease/testweak.js:35
console.log(obj.weekMap.get(obj).name);
                                ^

TypeError: Cannot read property 'name' of undefined
    at Object.<anonymous> (/home/bll/bll-jb/server/lib/ease/testweak.js:35:33)
    at Module._compile (module.js:434:26)
    at Object.Module._extensions..js (module.js:452:10)
    at Module.load (module.js:355:32)
    at Function.Module._load (module.js:310:12)
    at Function.Module.runMain (module.js:475:10)
    at startup (node.js:117:18)
    at node.js:951:3

WeakMap のこの動作について明確にすることはできません。

4

1 に答える 1