当我需要更新 SharePoint 列表中的某些值时,我会像这样创建 caml-batch:
<Batch ListVersion="1" OnError="Continue">
<Method Cmd="Update" ID="1">
<Field Name="ID">123</Field>
<Field Name="MyField">my value</Field>
</Method></Batch>
如何将空值传递给这样的批次?
当我需要更新 SharePoint 列表中的某些值时,我会像这样创建 caml-batch:
<Batch ListVersion="1" OnError="Continue">
<Method Cmd="Update" ID="1">
<Field Name="ID">123</Field>
<Field Name="MyField">my value</Field>
</Method></Batch>
如何将空值传递给这样的批次?