0

如何将日期时间字段从当前文档复制到 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。谢谢

4

2 回答 2

2

如果您使用,您不必关心将字段(=Items)从一个文档复制到另一个文档的数据类型

inheritDoc.copyItem(currentDocument.getDocument().getFirstItem("FieldName"))

或者

inheritDoc.replaceItemValue("FieldName", currentDocument.getDocument().getFirstItem("FieldName"))

目标文档中的字段将具有与源文档中相同的数据类型、内容和属性。

于 2013-06-12T21:56:52.527 回答
0

尝试使用 toJavaDate():

inheritDoc.replaceItemValue("DateField", currentDocument.getValue("DateField").toJavaDate());
于 2013-06-12T21:38:49.500 回答