我想用黄色突出显示父母的名字
<Item.Group>
{
this.state.posts.map(posts =>
<Item key={posts.key} author={posts.author}color="red">
<Item.Image size='tiny'
src='https://turnkeyit.co.uk/assets/img/Prose-Icon-(Blog).png'/>
<Item.Content>
<Item.Header>Titolo</Item.Header>
<Item.Meta>Pubblicato alle /gg/mm/yy</Item.Meta>
<Item.Description>
{posts.text} {posts.key}
</Item.Description>
<Item.Extra>
<Button color="blue" floated='right'
onClick={this.GetPost.bind(posts.key)}> Rivelati <Icon
name='heart'/> </Button>
</Item.Extra>
</Item.Content>
</Item>
)
}
</Item.Group>
这是我从数据库中显示所有项目的地方,但是posts.author显示对象未定义
GetPost(data){
alert(data)
}
这就是我要求显示uid的功能
Sub helpme ()
'Shell "cmd.exe /k cd """ & ThisWorkbook.Path & "\" & Range("B41") & """"
'if you just want to run the bat file...
Shell """" & ThisWorkbook.Path & "\" & Range("B41") & """"
End Sub
使用此代码,我会获取所有用户的帖子值,但我想创建一个按钮来从发布帖子的用户那里获取ID。我怎样才能得到父母的钥匙?