When I receive a JSON code via AjaxRequest
, my goal is to break down the object into either a string or an array so that I can easily handle the data.
Here is the JSON Code I am working with:
[{
"intAccountId": 2733,
"strAccountId": "59250-2001",
"strDescription": "SOIL TEST & GPS SERVICE-WB",
"strNote": null,
"intAccountGroupId": 6,
"dblOpeningBalance": null,
"ysnIsUsed": false,
"intConcurrencyId": 1,
"intAccountUnitId": null,
"strComments": null,
"ysnActive": true,
"ysnSystem": false,
"strCashFlow": null,
"intAccountCategoryId": 47
}]
The expected outcome should be similar to this.
"2733 59250-2001 SOIL TEST & GPS SERVICE-WB"