我正在使用 MGT(Microsoft Graph Toolkit)并且想知道是否可以对属性进行切片。这是我的代码:
<mgt-person person-query="me">
<template>
<div>
{{person.displayName}}
</div>
</template>
<template data-type="loading">
Loading
</template>
</mgt-person>
person.DisplayName 返回:“史密斯,约翰”
如何从中获得名字?我想切掉姓氏和“,”。
我知道 {{person.givenName}} 会给你名字,但由于各种原因,一些用户在他们的显示名称中有不同的名字,他们更喜欢被叫到。
请帮忙。