I use getJSON to request a JSON from my website. It works great, but I need to save the output into another variable, like this:
var myjson= $.getJSON("http://127.0.0.1:8080/horizon-update", function(json) { });
I need to save the result into myjson
but it seems this syntax is not correct. Any ideas?
You can't get value when calling getJSON
, only after response.
var myjson; $.getJSON("http://127.0.0.1:8080/horizon-update", function(json){ myjson = json; });
$.getJSon expects a callback functions either you pass it to the callback function or in callback function assign it to global variale.
var globalJsonVar; $.getJSON("http://127.0.0.1:8080/horizon-update", function(json){ //do some thing with json or assign global variable to incoming json. globalJsonVar=json; });
IMO best is to call the callback function. which is nicer to eyes, readability aspects.
$.getJSON("http://127.0.0.1:8080/horizon-update", callbackFuncWithData); function callbackFuncWithData(data) { // do some thing with data }
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With