如何将日期时间字段从当前文档复制到新文档

时间:2013-06-12 20:47:18

标签: xpages xpages-ssjs

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

2 个答案:

答案 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());