简体   繁体   中英

I need to access an item inside an array inside an array how to go about it (react)

I have a Patient array inside of every patient there is a relatives array inside is an id and a relationship I want to show the relationship based on the id here is an image for the data在此处输入图像描述

 props.data.slice(0, props.n).map((item) => {
                    return (
                            <Grid item xl={4} md={4} xs={4}>
                                <Link to={`/patient/${item.id}`} style={{ textDecoration: 'none', color: theme.palette.text.primary }}>
                                    <Card boxShadow={3} key={item.id} style={{ backgroundColor: theme.palette.card }}>
                                        <CardImg src={item.imgUri} alt={item.name} onError={addDefaultSrc} />
                                        //here I want to show the relationship
                                    </Card>
                                </Link>
                            </Grid>
   )
}

now to explain it more I have the for every patient a page and there are relative patient section the i render every paitent passed on the rletiveid now i already have the patient id stored now i wont to go throe all the relatives array and find where is == the patient id that i stored and return the relationshop the rletiveid should be unique it means every patient should return one relationshop

If your data structure correct as image, this should work

props.data.slice(0, props.n).map((item) => {
                    return (
                            <Grid item xl={4} md={4} xs={4}>
                                <Link to={`/patient/${item.id}`} style={{ textDecoration: 'none', color: theme.palette.text.primary }}>
                                    <Card boxShadow={3} key={item.id} style={{ backgroundColor: theme.palette.card }}>
                                        <CardImg src={item.imgUri} alt={item.name} onError={addDefaultSrc} />
                                       <p> {item.relatives[1].relationship} </p>
                                    </Card>
                                </Link>
                            </Grid>
   )
}

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM