最新消息:雨落星辰是一个专注网站SEO优化、网站SEO诊断、搜索引擎研究、网络营销推广、网站策划运营及站长类的自媒体原创博客

javascript - Immutable.Map.deleteAll() is not a function - Stack Overflow

programmeradmin2浏览0评论

Consider the following code:

const person = Immutable.Map({
    name: 'John',
    surname: 'Maverick',
    age: 39
});

const mutated = person.deleteAll(['name', 'age']);

Expected result would be that mutated now is a new instance of Map with the keys name and age deleted. However, throws an exception:

Uncaught TypeError: person.deleteAll is not a function

When inspecting the available methods of Immutable.Map prototype, there is no deleteAll nor removeAll methods. Have they been removed?

The method is listed in the official ImmutableJS documentation, but it is not available. What would be a native Immutable alternative in this case? Thank you.

Consider the following code:

const person = Immutable.Map({
    name: 'John',
    surname: 'Maverick',
    age: 39
});

const mutated = person.deleteAll(['name', 'age']);

Expected result would be that mutated now is a new instance of Map with the keys name and age deleted. However, throws an exception:

Uncaught TypeError: person.deleteAll is not a function

When inspecting the available methods of Immutable.Map prototype, there is no deleteAll nor removeAll methods. Have they been removed?

The method is listed in the official ImmutableJS documentation, but it is not available. What would be a native Immutable alternative in this case? Thank you.

Share Improve this question edited Mar 24, 2017 at 10:01 kettanaito asked Mar 24, 2017 at 9:57 kettanaitokettanaito 1,58411 silver badges16 bronze badges
Add a ment  | 

3 Answers 3

Reset to default 5

Looks like it's only been added on the latest version (ver. 4 RC1 & RC2). I looked over the src code and it's not found in the 3.8.1. Unless you want to use 4.0.0-rc.2, there's no other way to use that method yet.

As mentioned, deleteAll is only in the release candidate. You can get the same result with ...

const mutated = ['name', 'age'].reduce((map, key) => map.delete(key), person);

I think you should be using deleteIn?

https://facebook.github.io/immutable-js/docs/#/Map/deleteIn

person.deleteIn(['name', 'age']);
发布评论

评论列表(0)

  1. 暂无评论