我在一些与我在其他地方工作的代码几乎相同(至少在结构上)的代码中遇到了一个有趣的错误。我收到“Notes 错误:在索引中找不到条目”错误,它发生在我的ViewNavigator.getNext(ViewEntry)的 while 循环中。我觉得我在这个上遗漏了一些明显的东西,所以希望有人能发现它(我只是盯着它会发疯)。
[更新] Jesse 关于将 autoUpdate 设置为 false 的说明起到了作用。它似乎与2002 年的技术说明有关,因为我的循环在此循环期间确实保存到另一个文档(相同的数据库,不同的视图)。vw.setAutoUpdate(false);
我在视图上定义了句柄后立即放置成功。[/更新]
我正在走一个单类别视图(通过视图中每个文档的参考字段值)来总结分组文档中的一些信息。开启debug后,发现我从第一个类中的最后一个Document(一个Doc的ViewEntry)遍历回一个类(ViewEntry)时出现错误。
这是我的代码的精简版本(//... 为清楚起见表示删除的行):
View vw = db.getView("<ViewName>");
ViewNavigator nav = vw.createViewNav();
ViewEntry first = nav.getFirst();
String unid = "";
while(first != null){
if(first.isCategory()){
if(!unid.isEmpty()){
//summarize the info and save it back to the category-relevant doc
Document myDoc = db.getDocumentByUNID(unid);
//doing my thing
boolean success = myDoc.save(true, false);
myDoc.recycle();
}
unid = "";
}
if(first.isDocument()){
Vector<?> colVals = first.getColumnValues();
if(unid.isEmpty()){
//reset temp aggregation vars back to initial value (e.g.- 0)
//...
unid = (String) colVals.get(5); // the value of the category-relevant UNID
}else{
//doing the aggregation of summary values with the temp vars established before and handled after
//...
//perform aggregation from colVals with temp vars
}
session.recycle(colVals);
}
ViewEntry tmp = nav.getNext(first); //this is the line that fails!! only if it's the next category, which there is one
first.recycle();
first = tmp;
}