我有一个 XPage,由于(应该是)一个小变化而刚刚损坏。
如果我运行(其中 document1 是 NotesXSPDocument 数据源):
document1.replaceItem("ItemName", false); //or true, or any variable/formula that results in a boolean
其次是:
document1.getDocument(true);
我最终得到一个错误
[TypeError] 调用方法 NotesXspDocument.getDocument(boolean) 发生异常 null
这是在一个新文档上(因此尚未保存,我尚未对其进行测试,但可能会有所不同),因此我不能只在基础文档上设置该字段。
它似乎不是页面中其他任何东西的产物,因为基本测试页面证实了这一点。除了布尔值之外,任何东西(我发现)都不会发生这种情况。
除了更改数据类型之外,还有什么建议吗?我想这就是我最终要做的(连同错误报告),但我想知道我并没有首先遗漏什么。
谢谢
------------测试XSP代码------------
<?xml version="1.0" encoding="UTF-8"?>
<xp:view xmlns:xp="http://www.ibm.com/xsp/core"><xp:this.data>
<xp:dominoDocument var="document1" formName="Test" />
</xp:this.data><xp:span style="font-weight:bold">
Button 1 code:</xp:span><xp:br></xp:br>document1.replaceItemValue("Test",false);
<xp:br></xp:br>var doc:NotesDocument = document1.getDocument(true);
<xp:br></xp:br>print(doc.toString());<xp:br></xp:br>
<xp:button value="Test 1" id="button1">
<xp:eventHandler event="onclick" submit="true"
refreshMode="complete">
<xp:this.action><![CDATA[#{javascript:document1.replaceItemValue("Test",false);
var doc:NotesDocument = document1.getDocument(true);
print(doc.toString());}]]></xp:this.action>
</xp:eventHandler></xp:button>
<xp:br></xp:br>
<xp:br></xp:br>
<xp:br></xp:br>
<xp:br></xp:br><xp:span style="font-weight:bold">
Button</xp:span><xp:span style="font-weight:bold"> 2</xp:span><xp:span style="font-weight:bold"> Code:</xp:span><xp:span style="font-weight:bold"></xp:span> <xp:br></xp:br>document1.replaceItemValue("Test","Test);<xp:br></xp:br>var doc:NotesDocument = document1.getDocument(true);
<xp:br></xp:br>print(doc.toString());<xp:br></xp:br><xp:button value="Test 2" id="button2">
<xp:eventHandler event="onclick" submit="true"
refreshMode="complete">
<xp:this.action><![CDATA[#{javascript:document1.replaceItemValue("Test","Test");
var doc:NotesDocument = document1.getDocument(true);
print(doc.toString());}]]></xp:this.action>
</xp:eventHandler></xp:button></xp:view>