我在使用SSJS在xpages上开发的工作流应用程序中面临问题。我有状态字段,它是包含状态0到20的文本字段。当文档被发送回启动器并且状态值设置为0.有关的启动器尝试重新提交请求系统在使用数据源访问值时生成错误。无法获得后端文档值。相同的代码在浏览器中运行良好。您能否指导一下我的代码从客户端访问后端值的问题是什么? 以下是错误:
Unexpected Run Time Error
[TypeError] Exception occurred calling method NotesDocument.getItemValue(string) null
var mTitle = leaveDoc.getDocument().getItemValueString("Type");
if (mTitle == "Cancel")
{
return "Leave Application Cancellation Form"
}
else
{
return "Leave Application Form"
}
请看一下并指导我。
由于