I have an api that I am creating and I need to return a binary from my database in the form of json converted into a grid in the front end. I would like to know how I can do this, using javascript I managed to do it, but it can only handle one row of the database table at a time. Could you help me with this?
This is the way it comes from the api:
{"query":{"player_id":2,"itemtype":26670,"attributes":{"type":"Buffer","data":[34,163,1,123,91,34,99,100,49,34,93,32,61,32,49,53,52,57,54,54,54,52,50,51,46,50,53,44,91,34,112,111,107,101,66,111,111,115,116,34,93,32,61,32,53,48,44,91,34,99,100,51,34,93,32,61,32,49,53,52,57,54,54,54,52,50,55,46,53,44,91,34,99,100,49,48,34,93,32,61,32,49,53,52,57,54,54,54,52,50,48,44,91,34,112,111,107,101,72,101,97,108,116,104,34,93,32,61,32,54,56,56,53,48,44,91,34,112,111,107,101,77,97,120,72,101,97,108,116,104,34,93,32,61,32,49,52,49,55,53,48,44,91,34,99,100,52,34,93,32,61,32,49,53,52,57,54,54,54,52,50,55,46,50,53,44,91,34,112,111,107,101,76,111,111,107,68,105,114,34,93,32,61,32,51,44,91,34,112,111,107,101,76,101,118,101,108,34,93,32,61,32,49,48,48,44,91,34,99,100,57,34,93,32,61,32,49,53,52,56,55,49,54,48,54,51,46,50,53,44,91,34,99,100,54,34,93,32,61,32,49,53,52,57,54,54,54,51,54,49,46,50,53,44,91,34,99,100,55,34,93,32,61,32,49,53,52,57,54,54,54,51,55,51,46,55,53,44,91,34,105,115,66,101,105,110,103,85,115,101,100,34,93,32,61,32,48,44,91,34,112,111,107,101,78,97,109,101,34,93,32,61,32,34,83,104,105,110,121,32,109,111,108,116,114,101,115,34,44,91,34,112,111,107,101,69,120,112,101,114,105,101,110,99,101,34,93,32,61,32,48,44,91,34,99,100,50,34,93,32,61,32,49,53,52,57,54,54,54,52,50,50,46,55,53,44,91,34,99,100,53,34,93,32,61,32,49,53,52,53,50,54,48,53,57,55,46,55,53,44,91,34,99,100,56,34,93,32,61,32,49,53,52,57,54,54,54,51,56,55,44,125]}}}
However, I need it to return the data like this:
{pokeBoost: 50, pokeHealth: 68850, pokeMaxHealth: 141750, pokeLookDir: 3, pokeLevel: 100, …}
isBeingUsed
:
0
pokeBoost
:
50
pokeExperience
:
0
pokeHealth
:
68850
pokeLevel
:
100
pokeLookDir
:
3
pokeMaxHealth
:
141750
pokeName
:
"Shiny moltres"