Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
次のjQueryの例でオブジェクトを正しく返すにはどうすればよいですか:-
function get_stockists() { $.getJSON("/stockists/ajax_get_all", function(data) { //console.log(data); }); } var stockists = get_stockists(); console.log(stockists);
最善の方法は、戻るのではなく、コールバック関数を使用することです。
function getStockists(callback) { $.getJSON("/stockists/ajax_get_all", callback); } getStockists(function(stockists) { console.log(stockists); });