我想检索共享点列表的所有列和行的数据。因此,我试图发送一个“ViewFields”参数,指定要检索的所有字段到 Web 服务函数 getListItems()。请求xml如下:
<GetListItems xmlns="http://schemas.microsoft.com/sharepoint/soap/">
<listName>'.$list.'</listName>
<rowLimit>'.$limit.'</rowLimit>
<queryOptions xmlns:SOAPSDK9="http://schemas.microsoft.com/sharepoint/soap/" >
<QueryOptions/>
</queryOptions>
</GetListItems>
'ViewFields' 标签如下:
<ViewFields>
<FieldRef Name="ID" />
<FieldRef Name="Title" />...
</ViewFields>
我尝试插入,但它没有覆盖默认视图中的字段。所以,我想可能是我没有把它放在正确的地方。所以我的问题是标签应该在请求 xml 中出现在哪里,以便它覆盖默认视图中的字段。提前致谢。