Fiddlers Jscript JSON.JsonDecode



这就是我所拥有的:

public static var users=Fiddler.WebFormats.JSON.JsonDecode('[{key:"20048039", value:"Some Name"}, {key:"204130"...);

这就是我想要的:

users.JSONObject[0].keyusers.JSONObject[0].value

我用来调查的内容:

FiddlerApplication.Log.LogFormat('output: {0}', users.JSONObject[0]);

输出:system.collections.hashtable

我知道C#,但是在FiddlerScript中,我需要一些帮助才能在users中读取这些值。

我在这里该怎么办?

谢谢。

好吧,我自己找到了解决方案(arraylist,hashtable(:

users.JSONObject[0]["key"])

最新更新