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

javascript - Get current index of an item with Object.entries().map - Stack Overflow

programmeradmin1浏览0评论

I know it is probably a silly question but I can' find an answer by myself, so..

How can I get current index with this construction .map(([key, value])?

to access it inside the map function bellow

     return (
        <Fragment>
            {Object.entries(props.values).map(([key, value]) => {
                return (
                    <Button
                        key={key}
                        value={value}                      
                    />
                );
            })}
        </Fragment>
     );

I know it is probably a silly question but I can' find an answer by myself, so..

How can I get current index with this construction .map(([key, value])?

to access it inside the map function bellow

     return (
        <Fragment>
            {Object.entries(props.values).map(([key, value]) => {
                return (
                    <Button
                        key={key}
                        value={value}                      
                    />
                );
            })}
        </Fragment>
     );
Share Improve this question asked May 6, 2020 at 17:06 AndrewAndrew 7951 gold badge10 silver badges23 bronze badges
Add a ment  | 

1 Answer 1

Reset to default 6

You can obtain an index from callback in map

 return (
    <Fragment>
        {Object.entries(props.values).map(([key, value], index) => {
            return (
                <Button
                    key={key}
                    value={value}                      
                />
            );
        })}
    </Fragment>
 );

Please check https://developer.mozilla/en-US/docs/Web/JavaScript/Reference/Global_Objects/Array/map

发布评论

评论列表(0)

  1. 暂无评论