vote up 0 vote down star

Haaylp!

The Yahoo! Widgets spec says I can parse JSON objects using JSON.parse(). When I actually try this, and here is what I tried...

var parsed = JSON.parse('{"key": "value"}');

print (parsed);

for (p in parsed)
{
    print ("prop: "+p);
}

I get:

ReferenceError: JSON is not defined

What's going on? Is further magic required?

flag

77% accept rate

2 Answers

vote up 0 vote down

Have you set the widget to use 4.5 features? JSON object was introduced in 4.5, it's not available in the older versions of Y!WE.

<?xml version="1.0" encoding="UTF-8"?>
<widget>
    <version>1.0</version>
    <minimumVersion>4.5</minimumVersion>
    <settings>
        <setting name="debug" value="on"/>
    </settings>
</widget>
link|flag
vote up 0 vote down

Turns out that 'JSON' is not available until after the onLoad call completes. As far as I can surmise, this is an issue only on PCs and not Macs.

To use JSON, it does simply work out of the box, but to try it out you need to do it from a timer callback or something.

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.