2016-01-19 42 views
1

我與Office 365的工作,我已經使用REST API爲不同類型的操作。我可以輕鬆地找到文檔庫中的文件夾中的列表項,因爲它們是文件。我想要自定義列表中文件夾中的列表項。爲此,我無法找到任何REST API。能否請您給我提供任何REST API將能夠檢索在自定義列表從文件夾列表中的項目?如何利用休息API中的自定義列表的文件夾獲取列表項?

回答

0

我得到了答案。以下是辦法

var camlQuery = { 
    'query': { 
     '__metadata': { 'type': 'SP.CamlQuery' }, 
     'ViewXml': '<View><Query/></View>', 
     'FolderServerRelativeUrl': '/sites/EdvelopTest3/Lists/QuestionsList/test/test1' 
    } 
}; 

var url = OEPContext.appWebUrl + "/_api/SP.AppContextSite(@target)/web/lists/getByTitle('OEPLMSQuestions')/getitems?$select=ID,Title&@target='" + OEPContext.hostWebUrl + "'"; 
jQuery.ajax({ 
    async: false, 
    url: url, 
    type: "POST", 
    headers: { 
     "accept": "application/json;odata=verbose", 
     "content-type": "application/json;odata=verbose", 
     "X-RequestDigest": $("#__REQUESTDIGEST").val() 
    }, 
    data: JSON.stringify(camlQuery), 
    success: function (data) {    
     var result = "success"; 
    }, 
    error: function (data, msg) { 
     var result = "Fail"; 
    } 
}); 
相關問題