我有过类似的问题。就我而言,如果用户刷新页面,它会复制文档。我能够通过使用一个函数重定向到当前页面来解决这个问题。Tommy Valand 最初是这样写的: http ://dontpanic82.blogspot.com/2010/06/xpages-avoid-saving-duplicate-documents.html
我将其修改为重定向到选项卡表的当前选项卡。如果您不使用这些,请从功能中删除它。我相信在您的情况下,如果您在重定向到ThankYou 页面之前使用此功能,那么后退按钮将不会显示验证错误。它可能只会显示经过验证的文档。
您将希望将此函数包含在 SSJS 代码库中。保存新文档后调用该函数。我是这样称呼它的:
redirectToCurrentDocument( false, "Invoices" )
Invoices 是我要重定向到的选项卡的名称。
function redirectToCurrentDocument( switchMode:boolean, tab){
try {
if( typeof currentDocument === 'undefined' || viewScope.stopRedirect ){ return; }
// Gets the name of the XPage. E.g. /Person.xsp
var page = view.getPageName();
// Finds extra parameters, strips away XPages parameters/trims leading &
var parameters = context.getUrl().getQueryString().substring(1);
var extraParameters = parameters.replace(
/([&\?^]*_[a-z0-9=]+[&]{0,1})|(tab=\w{0,}[\&]{0,1})|(action=\w{4}Document[\&]{0,1})|(documentId=[\w]{32}[\&]{0,1})/ig, '').replace( /\&$/, '' );
// Gets the unid of the current document
//var unid = currentDocument.getDocument().getUniversalID();
//var unid = document1.getDocument().getUniversalID(); //changed this line to make work with multiple data sources - SJZ
var unid = document1.getDocument().getNoteID(); //also changed to use NoteID since it gave runtime errors for new documents - SJZ
// Sets/changes the action according according to the mode the document is in
var isEditable = currentDocument.isEditable();
if( switchMode ){ isEditable = !isEditable; } // false -> true / true -> false
var action = ( isEditable ) ? 'editDocument' : 'openDocument';
// Open the current document via a get request
var redirectUrl = page + '?documentId=' + unid + '&action=' + action;
if( extraParameters ){ redirectUrl += '&' + extraParameters; }
//print("tab=" + tab)
redirectUrl += '&tab=' + tab
context.redirectToPage( redirectUrl );
} catch(e){ /* Exception logging */ }
}
希望对您有所帮助。这对我很有效。