我在 SSJS 库中创建了一个函数。因为我在不止一个 XPage 中使用它。
当我在按钮后面调用此函数时,我看不到字段中的值如果我将其打印出来,我可以在管理控制台中看到该值,但在表单中看不到它,即使我得到完全刷新的页面。
实际上我的另一个问题是.. 是否可以比较 notesXSPDocument 和 NotesDocument。也许有人可以说最好的方法是什么?
function deneme(document1:NotesXSPDocument,otherDocfromOtherDatabase:NotesDocument)
{
//do staff here
if (document1.getItemValueString("field1")==otherDocfromOtherDatabase.getItemValueString("field2"))
{ //do some staff here...
document1.replaceItemValue("fieldName","FieldValue");}
}