SharePoint REST API 的 Expand 方法

Posted 霖雨

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了SharePoint REST API 的 Expand 方法相关的知识,希望对你有一定的参考价值。

  前言

  最近使用SharePoint PNP查询,查询查阅项字段的时候,需要获得该字段的其它信息,这里就需要Expand了。

  正文

  其实,请求很简单,如下,这样就可以请求查阅项的时候,扩展初查阅项字段的其它信息了

sp.web.lists.getByTitle("LookupList").items.select("Title", "Lookup/Title", "Lookup/ID").expand("Lookup").get().then((items: any[]) => 
    console.log(items);
);

  结束语

  大家不要以为,这个方法只能查询查阅项字段,还可以扩展用户字段里面用户的其它信息,查询文件的时候扩展文件的属性,用起来非常好用,可以减少一次请求。

  反正,我是推荐了,大家谁用谁知道!

以上是关于SharePoint REST API 的 Expand 方法的主要内容,如果未能解决你的问题,请参考以下文章

从sharepoint rest api下载文件时出现400错误

SharePoint REST API 的 Expand 方法

Sharepoint 2013 通过 REST API:尝试创建项目时禁止出现错误 403

sharepoint rest api Add ListItem 报错

text 更新项REST API调用SharePoint 2013

javascript 删除项REST API调用SharePoint 2013