如何通过 spfx vue js 上的 rest api 获取托管元数据类型(共享点)值

How to get the managed metadata type(share point) values via rest api on spfx vue js

如何在 Vue js 的 spfx 中使用 API 获取托管元数据类型值? 如何在

上使用 API 获取实际值

listUrl = context.pageContext.web.absoluteUrl + "/_api/web/lists/getbytitle('" + list +"')/items?$select*";

return context.spHttpClient.get(listUrl, SPHttpClient.configurations.v1,h)
.then((response: SPHttpClientResponse) => {
    return response.json();
});

结果是:
国家:对象
标签:“2”
TermGuid:“250b31ef-1d2d-482b-99a2-5743ddad9f85”
WssId: 2

为此场景展开隐藏字段 TaxCatchAll,

我的测试演示。

_api/web/lists/getbytitle('testlist')/items?$select=ID,Title,MetaField,TaxCatchAll/ID,TaxCatchAll/Term&$expand=TaxCatchAll

这是引用的线程。

https://sympmarc.com/2017/06/19/retrieving-multiple-sharepoint-managed-metadata-columns-via-rest/