我已經在SSJS庫中創建了一個函數。因爲我在多個XPage中使用它。NotesXSPDocument和NotesDocument
當我在按鈕後面調用該函數時,我看不到該字段中的值 如果我打印出來,我可以在管理控制檯中看到該值,但無法在表單中看到它即使我獲取了完全刷新的頁面。
其實我的另一個問題是..是否有可能比較notesXSPDocument和NotesDocument。也許有人會說那最好的辦法是什麼?
function deneme(document1:NotesXSPDocument,otherDocfromOtherDatabase:NotesDocument)
{
//do staff here
if (document1.getItemValueString("field1")==otherDocfromOtherDatabase.getItemValueString("field2"))
{ //do some staff here...
document1.replaceItemValue("fieldName","FieldValue");}
}
http://stackoverflow.com/search?q=compare+strings+java –