| ||||||||||
Shopping cart software Solutions for online shops and malls | ||||||||||
|
X-Cart Home | FAQ | Forum rules | Calendar | Mark Forums Read | User manuals | Login |
Bug in returned JSON | |||
|
|
Thread Tools | Search this Thread |
#1
|
|||||||
|
|||||||
Bug in returned JSON
Hi,
I believe I have found 2 issues in the json response for: URL/admin.php?target=RESTAPI&_key=XXXXX'&_path=order&_ schema=complex 1 - the returned JSON spells "arrtibutes" instead of "attributes" ... "arrtibutes":[],"price":9.99,"weight":0.3,"quantity":6, .... 2 - if there are NO attributes, its shows as an array ie - surrounded by [] However, if there ARE attributes, it is not an array - missing the [ ] ... "arrtibutes":{"Color":"Yellow","Size":"S"},"price" :19.99,"weight":0.5,... Can this be fixed?
__________________
Business 5.3.2.9 Rest API |
|||||||
#2
|
|||||||||
|
|||||||||
Re: Bug in returned JSON
Quote:
Thanks! I've reported this to the XC5 dev team: https://bt.x-cart.com/view.php?id=47930 Quote:
["Color":"Yellow","Size":"S"] is not a valid JSON. "[" and "]" can be used for plain lists only (like ["Color", "Size"]), so X-Cart converted its PHP array to a valid JSON object correctly.
__________________
Alex Solovev, Qualiteam --- User manual Video tutorials X-Cart FAQ You are welcome to press "Thanks" button if you find this post useful Click here to learn how to apply patches X-Cart Extensions |
|||||||||
#3
|
|||||||
|
|||||||
Re: Bug in returned JSON
Shouldn't the array be...
[{"Color":"Yellow","Size":"S"}],"price" :19.99,"weight":0.5,... Inside brackets?
__________________
Business 5.3.2.9 Rest API |
|||||||
#4
|
|||||||||
|
|||||||||
Re: Bug in returned JSON
In PHP arrays elements may have custom keys:
PHP Code:
In JavaScript (JSON comes from there) arrays have no keys, so arrays with keys translate from PHP to JSON as objects: Code:
__________________
Alex Solovev, Qualiteam --- User manual Video tutorials X-Cart FAQ You are welcome to press "Thanks" button if you find this post useful Click here to learn how to apply patches X-Cart Extensions |
|||||||||
|
Thread Tools | Search this Thread |
|
|
|
|||
X-Cart forums © 2001-2020
|