作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我从我的 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/
我从我的 Javascript 应用程序调用特定的 IBM Notes 代理。从 Javascript 到 Notes 代理的调用带有一个参数。此参数是通用 ID。 不幸的是,我的代理只获得了我的通用
我是一名优秀的程序员,十分优秀!