无法在 SharePoint Rest API 中获取 FileLeafRef 属性
Cannot get FileLeafRef property in SharePoint Rest API
您好,我们正在尝试使用 REST API 检索站点页面中的页面 link URL,问题是我们找不到名称 FileLeafRef 属性 value.FileLeafReaf = null.
function fn_getListItems(webUrl,listTitle, queryText)
{
var viewXml = '<View><Query>' + queryText + '</Query></View>';
var url = webUrl + "/_api/web/lists/getbytitle('" + listTitle + "')/getitems";
var queryPayload = {
'query' : {
'__metadata': { 'type': 'SP.CamlQuery' },
'ViewXml' : viewXml
}
};
return fn_executeJson(url,"POST",null,queryPayload);
}
function fn_getListViewItems(webUrl,listTitle,viewTitle)
{
var url = webUrl + "/_api/web/lists/getByTitle('" + listTitle + "')/Views/getbytitle('" + viewTitle + "')/ViewQuery";
return fn_executeJson(url).then(
function(data){
var viewQuery = data.d.ViewQuery;
return fn_getListItems(webUrl,listTitle,viewQuery);
});
}
function fn_executeJson(url,method,headers,payload)
{
method = method || 'GET';
headers = headers || {};
headers["Accept"] = "application/json;odata=verbose";
if(method == "POST") {
headers["X-RequestDigest"] = $("#__REQUESTDIGEST").val();
}
var ajaxOptions =
{
url: url,
type: method,
contentType: "application/json;odata=verbose",
headers: headers
};
if (typeof payload != 'undefined') {
ajaxOptions.data = JSON.stringify(payload);
}
return $.ajax(ajaxOptions);
}
谢谢。
要检索FileLeafRef
属性,需要在$select
查询选项中显式指定,例如:
/_api/web/lists/getbytitle('Site Pages')/items?$select=FileLeafRef
作为替代选项,它也可以通过 File
资源检索,例如:
/_api/web/lists/getbytitle('Site Pages')/items?$select=File/Name&$expand=File
FileLeafRef 属性只获取文件名。如果要获取文件url,我们需要使用ServerRelativeUrl 属性 of file.
REST API 使用这个。
/_api/web/lists/getbytitle('Site%20Pages')/items?$select=File/ServerRelativeUrl&$expand=File
SharePoint 将文件的完整 URL 存储在隐藏列 EncodedAbsUrl
中。
因此,您可以明确地请求它:
/_api/web/lists/getbytitle('Site Pages')/items?$select=*,EncodedAbsUrl
之后就可以直接使用了,如下图,注意引号:
var items = data.d.results;
$.each(items, function(index, value) {
//Append results to DIV
$("#lstGlobalNews").append("<tr><td class='ms-vb2'><a href="+value.EncodedAbsUrl+" target='_blank'>"+value.Title+"</a></td><td class='ms-vb2' style='text-align: right;'>"+fn_FormatDate(value.Date_x0020_Posted)+"</td></tr>");
});
您好,我们正在尝试使用 REST API 检索站点页面中的页面 link URL,问题是我们找不到名称 FileLeafRef 属性 value.FileLeafReaf = null.
function fn_getListItems(webUrl,listTitle, queryText)
{
var viewXml = '<View><Query>' + queryText + '</Query></View>';
var url = webUrl + "/_api/web/lists/getbytitle('" + listTitle + "')/getitems";
var queryPayload = {
'query' : {
'__metadata': { 'type': 'SP.CamlQuery' },
'ViewXml' : viewXml
}
};
return fn_executeJson(url,"POST",null,queryPayload);
}
function fn_getListViewItems(webUrl,listTitle,viewTitle)
{
var url = webUrl + "/_api/web/lists/getByTitle('" + listTitle + "')/Views/getbytitle('" + viewTitle + "')/ViewQuery";
return fn_executeJson(url).then(
function(data){
var viewQuery = data.d.ViewQuery;
return fn_getListItems(webUrl,listTitle,viewQuery);
});
}
function fn_executeJson(url,method,headers,payload)
{
method = method || 'GET';
headers = headers || {};
headers["Accept"] = "application/json;odata=verbose";
if(method == "POST") {
headers["X-RequestDigest"] = $("#__REQUESTDIGEST").val();
}
var ajaxOptions =
{
url: url,
type: method,
contentType: "application/json;odata=verbose",
headers: headers
};
if (typeof payload != 'undefined') {
ajaxOptions.data = JSON.stringify(payload);
}
return $.ajax(ajaxOptions);
}
谢谢。
要检索FileLeafRef
属性,需要在$select
查询选项中显式指定,例如:
/_api/web/lists/getbytitle('Site Pages')/items?$select=FileLeafRef
作为替代选项,它也可以通过 File
资源检索,例如:
/_api/web/lists/getbytitle('Site Pages')/items?$select=File/Name&$expand=File
FileLeafRef 属性只获取文件名。如果要获取文件url,我们需要使用ServerRelativeUrl 属性 of file.
REST API 使用这个。
/_api/web/lists/getbytitle('Site%20Pages')/items?$select=File/ServerRelativeUrl&$expand=File
SharePoint 将文件的完整 URL 存储在隐藏列 EncodedAbsUrl
中。
因此,您可以明确地请求它:
/_api/web/lists/getbytitle('Site Pages')/items?$select=*,EncodedAbsUrl
之后就可以直接使用了,如下图,注意引号:
var items = data.d.results;
$.each(items, function(index, value) {
//Append results to DIV
$("#lstGlobalNews").append("<tr><td class='ms-vb2'><a href="+value.EncodedAbsUrl+" target='_blank'>"+value.Title+"</a></td><td class='ms-vb2' style='text-align: right;'>"+fn_FormatDate(value.Date_x0020_Posted)+"</td></tr>");
});