After retrieving data from HandsOnTable, I am sending it to my Node.JS and Express.JS backend for storage. Following the example provided here (), I utilize json.stringify to format the data before transmitting it using an AJAX GET request.
The challenge arises when attempting to access the received data on the backend. Although I employ body-parser to retrieve JSON objects via req.body.xxx, I desire a method to access each individual row and field - such as 'Bob'.
Any suggestions? Below is a snippet of my JSON data.
{"data":[["Bob",null,"PHD",null],["Julie",null,"test",null],["Stan",null,"Masters",null]]}