Question

I want to parse this json object in javascript and have to obtain the values of key pass in string format.

{
   "isSuccessful": true,
   "resultSet": [
      {
         "name": "a",
         "pass": "123",
         "time_stamp": "2014-04-07T10:13:17.000Z"
      },
      {
         "name": "chetan",
         "pass": "123456",
         "time_stamp": "2014-04-07T10:13:34.000Z"
      },
      {
         "name": "dileep",
         "pass": "456321",
         "time_stamp": "2014-04-07T10:13:54.000Z"
      },
      {
         "name": "bnc",
         "pass": "654321",
         "time_stamp": "2014-04-07T10:19:37.000Z"
      }
   ]
}
Était-ce utile?

La solution

If you are asking in a general sense (no links to Worklight) I would look at other answers:

How do I iterate over a JSON structure?

JavaScript loop through json array?

How do I loop through or enumerate a JavaScript object?

In Worklight, if your example is the response of a Worklight adapter, the response will be in a property called invocationResult.

See also https://www.ibm.com/developerworks/community/blogs/worklight/entry/handling_backend_responses_in_adapters?lang=en

Licencié sous: CC-BY-SA avec attribution
Non affilié à StackOverflow
scroll top