Hi,
About NoSQL JSON access
In PHP
$jsonString = '
{
"orderID": 12345,
"customerName": "Michael Scofield",
"customerEmail": "michael@xxxx.com",
"contents": [
{
"productID": 43,
"productName": "0000000000",
"quantity": 6
},
{
"productID": 27,
"productName": "111111111",
"quantity": [
{
"test1":"test1test1test1",
"test2":"test2test2test2",
"test3":[
{
"mytest1":"3D",
"mytest2":"4D",
"mytest3":"5D"
}
]
}
]
}
],
"orderCompleted": true
}
';
$test = json_decode( $jsonString );
echo $test->customerEmail . "<br />";
echo $test->contents[1]->quantity[0]->test3[0]->mytest3 . "<br />";
I can get
If we insert above json code in NoSQL, can we get "5D" directly use any api call, rather than get all json code and parse json code to get "5D" ?
If yes, how can I do ?
Is there parse JSON code in APP42 services ?
like api call or other method
Thank you ?