You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Hello,
It is hard for me to handle the following Json structuring for arrays in Javascript afterwards:
{
"Example": {
"arrExample": {
"arrExample[0]": "Test0",
"arrExample[1]": "Test1"
}
}
}
Is it also possible to create (and read) an JSON string which looks like:
{
"Example": {
"arrExample": [
"Test0",
"Test1"
]
}
}
Best regards and thanks
The text was updated successfully, but these errors were encountered:
Hello,
It is hard for me to handle the following Json structuring for arrays in Javascript afterwards:
{
"Example": {
"arrExample": {
"arrExample[0]": "Test0",
"arrExample[1]": "Test1"
}
}
}
Is it also possible to create (and read) an JSON string which looks like:
{
"Example": {
"arrExample": [
"Test0",
"Test1"
]
}
}
Best regards and thanks
The text was updated successfully, but these errors were encountered: