我想在悬停或单击人员对象时将其他详细信息插入显示的人员卡中。我已经看到了几个关于如何使用 Web 组件来实现这一点的示例,但没有一个关于使用 React 版本进行设置的示例。
您能否提供一个示例,例如这个,但对于 React:
<mgt-person person-query="me" view="twolines" person-card="hover">
<template data-type="person-card">
<mgt-person-card inherit-details>
<template data-type="additional-details">
<h3>Stuffed Animal Friends:</h3>
<ul>
<li>Giraffe</li>
<li>lion</li>
<li>Rabbit</li>
</ul>
</template>
</mgt-person-card>
</template>
</mgt-person>
我的示例代码:
<Person userId={val.person} view={cf.GetPersonViewMode(this.props.roleSize)} fetchImage={true} showPresence={true}
personCardInteraction={PersonCardInteraction.hover} line2Property="mail">
<PersonCard inheritDetails={true}>
###
</PersonCard>
</Person>
如何从这里开始?