1

This is what I have:

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

This is what I want:

users.JSONObject[0].key or users.JSONObject[0].value

This what I use for investigation:

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

output: System.Collections.Hashtable

I know c#, but in FiddlerScript I need some help to read these values inside users.

What shall I do here ?

thanks.

4

1 回答 1

1

好的,我自己找到了解决方案(ArrayList,Hashtable):

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

于 2017-06-03T18:01:15.410 回答