Where does the response get stored after a Dojo JSONP request?
问题 JavaScript For example, I have the following JavaScript code (Dojo 1.6 is already loaded): dojo.require("dojo.io.script") // PART I var jsonpArgs = { url: "http://myapp.appspot.com/query", content: { id: "1234", name: "Juan", start_date: "2000-01-01", callback: "recover" } }; // PART II dojo.io.script.get(jsonpArgs).then(function(data) { console.log(data); }); // PART III function recover(data) { console.log(data); } Direct query from browser I understand that my server will receive the query