enter image description hereHi在My Xpages应用程序中,我想参考存储在NotesDocument richtext字段(Notes客户端中的Cofiguration文档)中的HTML,因此在Xpages数据源中我提到configDoc作为Notes Domino Document的源代码,在默认操作中我将其设置为“打开文档“和文档ID”我将Computed值设置如下“
var vw:NotesView = database.getView("vwConfig")
var doc:NotesDocument = vw.getFirstDocument()
var uniid:String = doc.getUniversalID();
return uniid
在我放置在computedField属性的其中一个地方,我提到了ssjs代码为
return configDoc.getValue("RTFIeldasHTML").getHTML();
这是有效的,如果我打开文档,但如果我打开现有文档不起作用,它会给我一个错误:
Error while executing JavaScript computed expression
docConfig.getValue()' is null
最可能的原因是docConfig
没有ignoreRequestParams="true"
。这意味着它正在打开ID在URL中的文档,并忽略您在documentId
属性中放置的任何内容。设置它,它将正常工作。