vote up 4 vote down star
1

I have a JSON object with a key element called callback.

{
"id":34,
"description":"",
"item_id":4,
"callback":"addNew",
"filename":"0000072.doc",
"type":"News",
"ext":"doc",
"size":46592
}

I would like to call the javascript "addNew" function. I tried.

json.callback(json);

But does not work. Any idea?

flag

60% accept rate

3 Answers

vote up 11 vote down check

Assuming it is a global function (it shouldn't be):

window[json.callback](json);

If your code is well structured you will probably have an object containing all the functions the JSON could call.

var myObject = {
  func1: function myObject_func1_method(foo) {
    return 1;
  },
  func2: function myObject_func2_method(foo) {
    return 2;
  }
}

Then you can:

myObject[json.callback](json);
link|flag
vote up 9 vote down

Don't use eval, use

window[json.callback](json);

If the function is in the global scope. Use the scope instead of window otherwise.

link|flag
vote up -1 vote down

Use eval(json.callback+'()');

link|flag
5  
eval is slow and dangerous – David Dorward Jun 4 at 11:12
1  
and unnecessary... – annakata Jun 4 at 11:15
Come on! Two minus votes. The guy tried to help! i vote you one up! – Sergio del Amo Jun 4 at 11:19
1  
He may have tried, but he advised poorly. This is not just a poor answer, it's downright dangerous and should be downvoted accordingly. – Garry Shutler Jun 4 at 11:49
Thanks Sergio for your comment. Sorry if my solution wasn't good. – Thinker Jun 4 at 12:31
show 2 more comments

Your Answer

Get an OpenID
or

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