Web services 用于在Sharepoint中添加ListItem的CAML查询

Web services 用于在Sharepoint中添加ListItem的CAML查询,web-services,sharepoint,soap,caml,Web Services,Sharepoint,Soap,Caml,添加ListItem(Wiki页面)的我的CAML查询不起作用。我试过好几次了 字段,但Sharepoint始终创建空页 以下是我迄今为止的CAML: <Batch OnError="Continue"> <Method ID="1" Cmd="New"> <Field Name="WikiField">My Wiki Content</Field> </Method>

添加ListItem(Wiki页面)的我的CAML查询不起作用。我试过好几次了 字段,但Sharepoint始终创建空页

以下是我迄今为止的CAML:

    <Batch OnError="Continue">
        <Method ID="1" Cmd="New">
         <Field Name="WikiField">My Wiki Content</Field>
        </Method>
      </Batch>

我的维基内容
试试这个

<Batch OnError="Continue">        
     <Method ID="1" Cmd="New">         
          <Field Name="urn:schemas-microsoft-com:office:office#WikiField">My Wiki Content</Field>        
     </Method>      
</Batch>

我的维基内容

这没用。谢谢你的回答。