0

我收到上述错误。有没有办法检查下一个文档是否为空?下面是我的代码:

var vec:NotesView = database.getView("QueryNotes");
var queryColl:NotesDocumentCollection =   vec.getAllDocumentsByKey(ProjectUNID,true);
if(queryColl.getCount() > 0){
var queryDoc1:NotesDocument = queryColl.getFirstDocument();
while (queryDoc1 != null) {
    if(!queryDoc1.hasItem("QueryEndDate")){
        queryDoc1.appendItemValue("QueryEndDate", session.createDateTime(@Now()));

        var tmpdoc = vec.getNextDocument(queryDoc1); //error when next is null, or does not exist
        queryDoc1.recycle();
        queryDoc1 = tmpdoc;
      }
   }
}

应该有一种检查方法,stackoverflow上的一个类似问题没有回答这个问题。

期待你的回复。

4

1 回答 1

3

您正在对vec变量调用 getNextDocument() (这是一个视图对象并且没有该方法)。您应该改用该queryColl变量。

于 2016-12-01T11:49:23.023 回答