在 Lotus Notes 项目中,很容易在 QueryOpen 方法中自动访问当前文档,例如,从 NotesUIDocument 中提取它,这是一个参数。
Sub Queryopen(Source As Notesuidocument, Mode As Integer, Isnewdoc As Variant, Continue As Variant)
//Here I get the document
Dim doc as NotesDocument
Set doc = Source.document
End Sub
我怎么能做同样的事情,但在网络上工作,使用 Javascript?当然,不一定在 QueryOpen 方法中。