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