私は次のコードを持っています:
$("#submit_financials").live('click', function(event){
event.preventDefault();
// using serialize here to pass the POST variables to the django view function
var serialized_data = $("#financials_filter_form").serialize()
$.post("/ajax/custom_filter/", serialized_data, function(response){
// create a graph
});
$.post("/ajax/force_download/", serialized_data, function(response){
alert('hello');
});
});
ただし、このコードを実行すると、グラフの前に「hello」という応答が返されます。なぜこうなった?そして、最初にグラフを取得するようにこれをどのように変更しますか?