getalldocumentsbykey函数获取空字符串是什么意思?
Getalldocumentsbykey function get empty string means?
Set timeVc=timeVw.Allentries
Set tobeDeleted=timeVw.Getalldocumentsbykey("", true)
Call tobeDeleted.removeall(True)
刚才想确认getalldocumentbykey with empty string是什么意思
GetAllDocumentsByKey,第一个参数为空字符串returns一个空集合。
如果您想在视图的第一个排序列中获取所有具有空值的文档,请将第一个排序列的公式更改为
@If(YourFieldName = ""; " "; YourFieldName)
它现在有一个 space 而不是空字符串。
Set tobeDeleted=timeVw.Getalldocumentsbykey(" ", true)
returns 然后所有这些文件。
Set timeVc=timeVw.Allentries
Set tobeDeleted=timeVw.Getalldocumentsbykey("", true)
Call tobeDeleted.removeall(True)
刚才想确认getalldocumentbykey with empty string是什么意思
GetAllDocumentsByKey,第一个参数为空字符串returns一个空集合。
如果您想在视图的第一个排序列中获取所有具有空值的文档,请将第一个排序列的公式更改为
@If(YourFieldName = ""; " "; YourFieldName)
它现在有一个 space 而不是空字符串。
Set tobeDeleted=timeVw.Getalldocumentsbykey(" ", true)
returns 然后所有这些文件。