vote up 1 vote down star

thank you. here is the correct question:

{
    "VID":"60",
    "name":"\u4f1a\u9634",
    "requireLevel":"20",
    "levelMax":"5",
    "venationRequirement":"0",
    "description":"\u6c14\u6d77\u4e0a\u9650\u63d0\u9ad8[Affect1]\u70b9",
    "cost":{"1":"240","2":"360","3":"400","4":"600","5":"720"},
    "difficult":{"1":"1024","2":"973","3":"921","4":"870","5":"819"},
    "affect":{"1":"200","2":"500","3":"900","4":"1400","5":"2000"},
    "descriptions":{
    	"1":"\u6c14\u6d77\u4e0a\u9650\u63d0\u9ad8200\u70b9",
    	"2":"\u6c14\u6d77\u4e0a\u9650\u63d0\u9ad8500\u70b9",
    	"3":"\u6c14\u6d77\u4e0a\u9650\u63d0\u9ad8900\u70b9",
    	"4":"\u6c14\u6d77\u4e0a\u9650\u63d0\u9ad81400\u70b9",
    	"5":"\u6c14\u6d77\u4e0a\u9650\u63d0\u9ad82000\u70b9"
    }
}

i used json_encode() in php ,and ajax request to get the response text.

but when i use eval() to parse the response text. it's wrong.

moonshadow and james gregory has answered this question at the comments below.thank you again.

flag

7 Answers

vote up 0 vote down

The [] syntax is explicitly for creating arrays whereas {} has a completely different meaning (it thinks you're trying to create a function/block)

link|flag
vote up 0 vote down

so i can't use eval to parse a string like {{"a":1},{"b":2}}? right?

link|flag
nope, eval only parses syntactically correct JavaScript. Standard JSON is just that - syntactically correct JavaScript. You could either transform the information before passing it to eval, or modify whatever is emitting the result to produce it in the standard JSON format. – Ruben Bartelink Dec 23 '08 at 10:18
vote up 4 vote down

Your second one is wrong because you're evaluating a hash, for it to work you'd need to rewrite it to be something like:

var s = '{"first": {"a":1}, "second": {"b":2}}';
link|flag
vote up 2 vote down

If your second example is an attempt to create an object with two nested objects, you're missing the names for the properties of the outer object, e.g.

var s = '{ "FirstSubObject" : {"a":1}, "SecondSubObject":{"b":2}}';

link|flag
vote up 0 vote down

comments of this answer is the correct answer of this question.

link|flag
Prepend a '(' and append a ')' before passing the string to eval(). – moonshadow Dec 23 '08 at 10:40
IvanLi: I suggest that you edit your original question so that moonshadow can claim the correct response for this one. – Aaron Digulla Dec 23 '08 at 10:43
moonshadow's suggestion will work, as will changing the eval from var a = eval('...') to eval('var a = ' + s) – James Gregory Dec 23 '08 at 10:44
Very neat -- having fun playing around with the effects of moonshadow's and James Gregory's comments. Wish they were answers so I could vote them up! – Athena Dec 23 '08 at 10:52
thank you all.but how can i change this comments to be a question... – IvanLi Dec 23 '08 at 11:26
vote up 3 vote down

Javascript gets a little confused about what, in what context, it is parsing. Prepend a '(' and append a ')' before passing the string to eval() to force it to parse the whole thing as an expression.

(Your question as posed is also missing labels for the outer associative array, as others have pointed out, however the sample data you've provided clarifies the actual problem).

link|flag
vote up 0 vote down

Using json is a much better solution for this.

link|flag

Your Answer

Get an OpenID
or

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