Spaces:
Runtime error
Runtime error
File size: 2,467 Bytes
8d21d0b 2a479da 8d21d0b |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 |
/**
* helper functions defined
*/
function handle_one_return(output) {
return output;
}
function handle_two_return(output1, output2) {
return [output1, output2];
}
/**
*
* @param {string} url from javascript to flask(python) with route
* @param {dictionary} data from javascript to flask(python) with data
* @param {function} handle ν° μλ―Έ μμ
*/
function sendAjax(url, data, handle) {
/*
jQuery.getJSON(url, [, data], [, success])
Load JSON-encoded data from the server using a GET HTTP request.
*/
$.getJSON(url, data,
function(response) {
handle(response.result);
}
);
}
/**
*
* @param {string} url from javascript to flask(python) with route
* @param {dictionary} data from javascript to flask(python) with data
* @param {string} dataType The type of data that you're expecting back from the server. (ex. "json")
* @param {function} handle ν° μλ―Έ μμ
* @returns from flask(python) to javascript with data
*/
function sendAjax_sync(url, data, dataType, handle) {
/*
jQuery.ajax(url, [, settings]) => Synchronous ( λκΈ°μ : μ½λ μμλλ‘ μ§ν )
jQuery.getJSON => Asynchronous (λΉλκΈ°μ)
*/
var search_var;
$.ajax(url=url, settings={data: data, dataType: dataType, async: false,
success: function(response) {
search_var = handle(response.result); // handle, ν° μλ―Έ μμ
}
});
return search_var
}
/**
*
* @param {string} url from javascript to flask(python) with route
* @param {dictionary} data from javascript to flask(python) with data
* @param {string} dataType The type of data that you're expecting back from the server. (ex. "json")
* @param {function} handle ν° μλ―Έ μμ
* @returns from flask(python) to javascript with data
*/
function sendAjax_sync_about_chartData_and_newsArticles(url, data, dataType, handle) {
/*
jQuery.ajax(url, [, settings])
jQuery.getJSON => Asynchronous (λΉλκΈ°μ)
Synchronous => λκΈ°μ : μ½λ μμλλ‘ μ§ν
*/
var chart_data;
var news_articles;
$.ajax(url=url, settings={data: data, dataType: dataType, async: false,
success: function(response) {
[chart_data, news_articles] = handle(response.chart_data, response.news_articles); // handle, ν° μλ―Έ μμ
}
});
return [chart_data, news_articles];
}
|