Javascript Map has duplicate keys - Stack Overflow

The Map object set method is meant to add a new keypair, or update an existing keypair. See docs.I�

The Map object set method is meant to add a new key/pair, or update an existing key/pair. See docs.

I've been struggling to figure out how it is that my Map has ended up with duplicate keys when I attempt to populate it with database results:

let users = new Map();

function loadUserByName(name) {
    db.loadUser({ name }, (err, user) => {
        users.set(user.id, user);          
    });
}

loadUser('george');
users.forEach( (item) => { console.log(item.key); } );
// Output:
// 57bbfcb47ff30b00db69ae87

loadUser('george');
users.forEach( (item) => { console.log(item.key); } );
// Output:
// 57bbfcb47ff30b00db69ae87
// 57bbfcb47ff30b00db69ae87

The Map object set method is meant to add a new key/pair, or update an existing key/pair. See docs.

I've been struggling to figure out how it is that my Map has ended up with duplicate keys when I attempt to populate it with database results:

let users = new Map();

function loadUserByName(name) {
    db.loadUser({ name }, (err, user) => {
        users.set(user.id, user);          
    });
}

loadUser('george');
users.forEach( (item) => { console.log(item.key); } );
// Output:
// 57bbfcb47ff30b00db69ae87

loadUser('george');
users.forEach( (item) => { console.log(item.key); } );
// Output:
// 57bbfcb47ff30b00db69ae87
// 57bbfcb47ff30b00db69ae87
Share Improve this question asked Aug 24, 2016 at 10:41 anthonygoreanthonygore 4,9875 gold badges33 silver badges30 bronze badges
Add a ment  | 

1 Answer 1

Reset to default 8

A Map can have an object as the key. And just because two objects output as the same string, does not mean they are the same object. The above code can be fixed by casting user.id as a string i.e.:

function loadUserByName(name) {
    db.loadUser({ name }, (err, user) => {
        users.set(String(user.id), user);          
    });
}

发布者:admin,转转请注明出处:http://www.yc00.com/questions/1743702922a4492877.html

相关推荐

  • Javascript Map has duplicate keys - Stack Overflow

    The Map object set method is meant to add a new keypair, or update an existing keypair. See docs.I�

    16小时前
    10

发表回复

评论列表(0条)

  • 暂无评论

联系我们

400-800-8888

在线咨询: QQ交谈

邮件:admin@example.com

工作时间:周一至周五,9:30-18:30,节假日休息

关注微信