エントリーの編集
エントリーの編集は全ユーザーに共通の機能です。
必ずガイドラインを一読の上ご利用ください。
Getting nested values in Immutable.js
記事へのコメント0件
- 注目コメント
- 新着コメント
このエントリーにコメントしてみましょう。
注目コメント算出アルゴリズムの一部にLINEヤフー株式会社の「建設的コメント順位付けモデルAPI」を使用しています
- バナー広告なし
- ミュート機能あり
- ダークモード搭載
関連記事
Getting nested values in Immutable.js
According to the docs here: https://facebook.github.io/immutable-js/docs/#/Map/getIn I should be ... According to the docs here: https://facebook.github.io/immutable-js/docs/#/Map/getIn I should be able to get the deeply nested value by providing an array for the keyPath argument. This is what I've done, however I'm getting undefined as the return value. http://jsfiddle.net/srxv4mwu/ var obj = Immutable.Map({categories: {1: 'a', 2: 'b'}}); var output = obj.getIn(['categories', 1]); alert(output);