开发者

JSON Syntax, what is this?

开发者 https://www.devze.com 2023-01-03 10:33 出处:网络
I understand concepts of JSON ok, but after starting to use ebay\'s api, I came across a notation which I\'ve not seen before, and was wondering if anyone could explain what\'s going on with it?

I understand concepts of JSON ok, but after starting to use ebay's api, I came across a notation which I've not seen before, and was wondering if anyone could explain what's going on with it?

{
"findItemsByKeywordsResponse": [
    {
        "ack": [
            "Success" 
        ],
        "version": [
            "1.5.0" 
        ],
        "timestamp": [
            "2010-06-16T08:42:21.468Z" 
        ],
        "searchResult": [
            {
                "@count": "0" 
            } 
        ],
        "paginationOutput": [
            {
                "pageNumber": [
                    "0" 
                ],
                "entriesPerPage": [
                    "10" 
                ],
              开发者_C百科  "totalPages": [
                    "0" 
                ],
                "totalEntries": [
                    "0" 
                ] 
            } 
        ] 
    } 
]

}

What's the "@count" thing? I noticed when I reference it in chrome, it throws an error:

chrome error http://www.oth4.com/clip.jpg

But in Firefox not. JSON Lint reports it's valid, as I'd expect... ;)


It is a property name that starts with an @ character. That is all.

Use square bracket notation to access properties containing characters that you can't use in dot notation.

i.e.

currentPrice[0]['@currencyId']


In addition to the answers here, @ usually appears in JSON property names when the JSON is created from XML. The @ represents an XML attribute so that it can be distinguished from the child elements of that XML node in it's new JSON form. For instance, that particular item in XML might look like this:

    <searchResult count="0">
    </searchResult>

As already suggested, you can access the property using square bracket notation.


Try:

var currency = item.sellingStatus[0].currentPrice[0]["@currencyId"];

There's no requirement that Javascript array keys be valid Javascript identifiers.


In PHP, if you want to access a property which name starts with an invalid character you have to use {'property_name'}. So if you want to access @count from your specific JSON example you should try this:

$json_decoded = json_decode($json_var);
$count = $json_decoded->findItemsByKeywordsResponse[0]->searchResult[0]->{'@count'};

json_decode() function was used to convert the JSON into an PHP object.

0

精彩评论

暂无评论...
验证码 换一张
取 消