如何将当前文档中的日期时间字段复制到Xpages,SSJS中的新文档。
我正在处理像这样的其他领域
inheritDoc.appendItemValue("AbbreviatedCustomer",currentDocument.getValue("AbbreviatedCustomer"));
var item:NotesItem = inheritDoc.replaceItemValue("Author", n1); item.setNames(true);
item = inheritDoc.replaceItemValue("AuthorAccess", currentDocument.getValue("AuthorAccess")); item.setAuthors(true);
但我不知道如何将日期字段从currentDocument复制到inheritDoc。 感谢
答案 0 :(得分:2)
如果您使用
,则无需关心将字段(= Items)从一个文档复制到另一个文档的数据类型inheritDoc.copyItem(currentDocument.getDocument().getFirstItem("FieldName"))
或
inheritDoc.replaceItemValue("FieldName", currentDocument.getDocument().getFirstItem("FieldName"))
目标文档中的字段将具有与源文档中相同的数据类型,内容和属性。
答案 1 :(得分:0)
尝试使用toJavaDate():
inheritDoc.replaceItemValue("DateField", currentDocument.getValue("DateField").toJavaDate());