MSGraph - 是否可以对从 API 调用的属性进行切片?
MSGraph - Is it possible to slice an attribute called from an API?
我正在使用 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 Returns : "史密斯,约翰"
如何从中获取名字?我想切出姓氏和“,”。
我知道 {{person.givenName}} 会给你名字,但由于各种原因,一些用户在他们的显示名称中有不同的名字,他们更愿意被称为。
请帮忙。
你可以用js来实现:
person.displayName.split(",")[0]
我正在使用 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 Returns : "史密斯,约翰"
如何从中获取名字?我想切出姓氏和“,”。
我知道 {{person.givenName}} 会给你名字,但由于各种原因,一些用户在他们的显示名称中有不同的名字,他们更愿意被称为。
请帮忙。
你可以用js来实现:
person.displayName.split(",")[0]