HI,
I am getting below error when trying to parse the json data using JSON.parse().
Uncaught SyntaxError: Unexpected token u in JSON at position 0
Json data:
[
{
"ItemNumber": "Abc",
"OrganizationCode": "MST",
"Region": "region1",
"DisplayName": "Test1",
"PDHValue": "Test1 Desc1",
"EBSValue": "Test1 Desc1"
},
{
"ItemNumber": "Abc",
"OrganizationCode": "MST",
"Region": "region1",
"DisplayName": "Test2",
"PDHValue": "Test2 desc1",
"EBSValue": "Test2 desc2"
}
]
Thanks,
Naresh