gpt4 book ai didi

javascript - ParameterDocID 仅获取我的 DocumentUniqueID 的 6 位数字

转载 作者:行者123 更新时间:2023-11-30 11:06:10 25 4
gpt4 key购买 nike

我从我的 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 - ParameterDocID 仅获取我的 DocumentUniqueID 的 6 位数字,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/55517545/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com