将深层对象展平为单一层级,并将键转换为点分隔表示。
crushObject({ name: 'ra', children: [{ name: 'hathor' }] })// { name: 'ra', 'children.0.name': 'hathor' } Copy
crushObject({ name: 'ra', children: [{ name: 'hathor' }] })// { name: 'ra', 'children.0.name': 'hathor' }
将深层对象展平为单一层级,并将键转换为点分隔表示。
Example