gpt4 book ai didi

rest - 如何从 Sharepoint Assets 库获取文件名

转载 作者:行者123 更新时间:2023-12-01 11:31:44 24 4
gpt4 key购买 nike

如何从 SharePoint 2013 Assets 库中获取图像的文件名?

我正在尝试编写一个 JQuery/REST 片段来根据其他列值搜索库中的图像子集并显示它们。如果是文档库,我会使用 FileLeafRef,但我无法在 Assets 库中找到等效字段。

到目前为止,我尝试了以下方法,但均未返回文件名:https:///crm/_api/Web/Lists/GetByTitle('Publication%20List')/items?select=File/Name&expand=Filehttps:///crm/_api/Web/Lists/GetByTitle('Publication%20List')/items?select=FileLeafRef

最佳答案

您的示例中有一个错别字,特别是$ 符号缺少 $select$expand 查询选项(more details)。

以下其余端点演示了如何从 Assets 库中检索文件名:

1) 使用 FileLeafRef 属性:

/_api/web/lists/getByTitle('<list title>')/items?$select=FileLeafRef

2) 使用 File/Name 属性:

/_api/web/lists/getbytitle('<list title>')/items?$select=File/Name&$expand=File

3) 使用 Folder/Files 属性:

/_api/web/getfolderbyserverrelativeurl('<list url>')/files?$select=Name  

关于rest - 如何从 Sharepoint Assets 库获取文件名,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/31527575/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com