我有一个包含一些自定义列的SharePoint(SP)库。 其中一列包含指向SP列表的查找字段。
我需要检索列表中的文档和所有自定义字段,包括查找列表中的字段(连接)。
关于此topc的stackoverflow上有一些Q& A,但它们是关于SP列表而不是SP文档库。
这是我到现在为止所提出的(使用javascript执行GET):
{
"url": "sites/mysite/_api/Web/GetFolderByServerRelativeUrl('/sites/mysite/myfilelibrary')
/files?$select=Name,LinkingUrl,TimeCreated,TimeLastModified,Title,ListItemAllFields
&$expand=ListItemAllFields/myListIdId"
}
这导致:
{
"value": [
{
"ListItemAllFields": {
"FileSystemObjectType": 0,
"Id": 1,
"ServerRedirectedEmbedUrl": "https://mydomain.sharepoint.com/sites/mysite/_layouts/15/WopiFrame.aspx?sourcedoc={abababab-efff-4e69-94de-128ff7c14256}&action=interactivepreview",
"ContentTypeId": "0x010100769480B9F5404447A43367BFC5B86AAB",
"Title": null,
"checkResponsible": null,
>>>>>>>>>>>>"myListIdId": 15, <<<<<<<<<<<<<<<<<<<<<
"SharedWithUsersId": null,
"SharedWithDetails": null,
"ID": 1,
"Created": "2016-07-25T06:04:56",
"AuthorId": 9,
"Modified": "2016-07-26T15:11:27",
"EditorId": 11,
"OData__CopySource": null,
"CheckoutUserId": null,
"OData__UIVersionString": "9.0",
"GUID": "898770aa-da56-40ae-9db1-430bba2da9bd"
},
"LinkingUrl": "https://mydomain.sharepoint.com/sites/mysite/myFileLibrary/Document.docx?d=w3028f42eefff4e6994de128ff7cd6e48",
"Name": "Document.docx",
"TimeCreated": "2016-07-25T13:04:56Z",
"TimeLastModified": "2016-07-26T22:11:27Z",
"Title": ""
}
]
}
返回字段myListIdId但未展开。
$expand=ListItemAllFields/myListIdId
应该做的伎俩,但显然不是。 我错过了什么?
答案 0 :(得分:0)
根据this article,在select参数中指定扩展字段。
修订版:
“ ... $ select =名称,LinkingUrl,TimeCreated,TimeLastModified,标题,ListItemAllFields / myListIdId &$ expand = ListItemAllFields“