对于Ruby的检查,LotusScript中的等价物是什么。 (列出班级成员/等)?

时间:2017-03-31 18:42:25

标签: oop lotusscript

我需要知道如何将lotusscript对象的对象/类成员列为文本,以便进行调试。我不知道'什么'从对象返回的是。

在这种情况下,我使用ls.SNAPPS.JSONReader类来读取一些JSON,并且需要进行嵌套调用。

Set jsonReader = New JSONReader
Set vResults = jsonReader.parse(result)
Modifiers = vResults.GetItemValue("_embedded").GetItemValue("modifiers").items
ForAll modifier In Modifiers
    Modifiers2 = modifier.GetItemValue("_embedded").GetItemValue("price_levels").items
    ForAll modifiers3 In Modifiers2 
        ^-- here is where it explodes, type mismatch. 
    End Forall
End Forall

我已经验证了json中有_embedded [] modifiers [] _embedded [] price_levels []结构。

0 个答案:

没有答案