Posts by user172745 • 26 points
1 post
-
0
votes1
answer168
viewsA: How to separate and identify objects within an Ajax request, with data coming from Servlet via Json?
If queryObject is in JSON format, will have a structure {key:value}. Then just pick up with: var value = queryObject['key']; If not, you can user the JSON.parse first: var parsed =…