我需要通過使用Web服務從SharePoint獲取數據。我做到了,但我不知道如何從View獲取數據。SharePoint如何獲取ViewName
XmlNode itemNode = spList.GetListItems(url[1],
null,
ndQuery,
ndViewFields,
null,
ndQueryOptions,
null);
第二個參數必須是ViewName。
我找到了System.Xml.XmlNode ndListView = spList.GetListAndView(url[1], "");
,但它返回默認的ViewName(「AllItems」)guid。有兩個以上的意見。
有什麼想法嗎?