ParameterDocID 仅获取我的 DocumentUniqueID 的 6 位数字
ParameterDocID gets only 6 digit of my DocumentUniqueID
我从我的 Javascript 应用程序调用特定的 IBM Notes 代理。从 Javascript 到 Notes 代理的调用带有一个参数。此参数是通用 ID。
不幸的是,我的代理只获得了我的通用 ID (DocumentUniqueID) 的 6 位数字。但我想要完整的 UniversalID。缺少什么,知道吗?
我的Javascript:
//more code before....
var UID = new String
UID$ = doc.getUniversalID()
// notes agent
var notesAgent = db.getAgent("NameOfMyNotesAgent");
// execute notes agent
var agentResult = notesAgent.runOnServer(UID$)
如果我输出我的 UID,它是通用 ID 的全长。这不是问题。
我的笔记代理 (NameOfMyNotesAgent):
Dim agent As NotesAgent
Dim sess As New NotesSession
Dim db As NotesDatabase
Set db = sess.CurrentDatabase
Set agent = sess.CurrentAgent
Dim docUID As String
docUID = agent.ParameterDocID
'Display Notes document UID
Print "******************************"
Print "Notes Document UID: " & docUID
Print "******************************"
' I only get the last 6 part of the DocumentUniqueID, not the full one. Why?
编辑:
我从 Knut Herrmann 那里得到信息,这与 runOnServer
有关,它只接受 noteID
。
由于不同副本中的 NoteId 发生变化,我想用 DocumentUniqueID
来完成此操作。我可以使用哪种方式,有替代方法吗?
Agent 的 runOnServer(String noteID)
只接受 noteId 作为参数,不接受 UniversalId。
因此,将代码更改为
var noteID = doc.getNoteID()
...
var agentResult = notesAgent.runOnServer(noteID)
我从我的 Javascript 应用程序调用特定的 IBM Notes 代理。从 Javascript 到 Notes 代理的调用带有一个参数。此参数是通用 ID。
不幸的是,我的代理只获得了我的通用 ID (DocumentUniqueID) 的 6 位数字。但我想要完整的 UniversalID。缺少什么,知道吗?
我的Javascript:
//more code before....
var UID = new String
UID$ = doc.getUniversalID()
// notes agent
var notesAgent = db.getAgent("NameOfMyNotesAgent");
// execute notes agent
var agentResult = notesAgent.runOnServer(UID$)
如果我输出我的 UID,它是通用 ID 的全长。这不是问题。
我的笔记代理 (NameOfMyNotesAgent):
Dim agent As NotesAgent
Dim sess As New NotesSession
Dim db As NotesDatabase
Set db = sess.CurrentDatabase
Set agent = sess.CurrentAgent
Dim docUID As String
docUID = agent.ParameterDocID
'Display Notes document UID
Print "******************************"
Print "Notes Document UID: " & docUID
Print "******************************"
' I only get the last 6 part of the DocumentUniqueID, not the full one. Why?
编辑:
我从 Knut Herrmann 那里得到信息,这与 runOnServer
有关,它只接受 noteID
。
由于不同副本中的 NoteId 发生变化,我想用 DocumentUniqueID
来完成此操作。我可以使用哪种方式,有替代方法吗?
Agent 的 runOnServer(String noteID)
只接受 noteId 作为参数,不接受 UniversalId。
因此,将代码更改为
var noteID = doc.getNoteID()
...
var agentResult = notesAgent.runOnServer(noteID)