1
在SO上有一個類似的題目問題,但它確實與我的問題沒有任何關係。將JQuery數組傳遞給Flask變量
所以,我有一些JQuery數組,我在一個函數中創建。現在,我想在同一個函數中爲這些JS數組設置一些燒瓶變量。我想這樣做的原因是,我然後設置一個元素的href
並路由我的用戶。
下面是當前JS代碼:
JQuery的
//Filter Search
$(function() {
$('#filter_search').click(function() {
var entities = JSON.parse(JSON.stringify($('#filterform').serializeObject())).checkboxes;
var data = JSON.parse(JSON.stringify($('#filterform').serializeObject())).checkboxeslower;
if(typeof data == "string") {
data = $.makeArray(data);
}
//Here I want to set Flask variables like {{entities}} and {{data}}
//Then, I will call the next line
$("#filter_search").attr('href', "{{ url_for('filter_search', entities='{0}', data='{1}'.format(entities, data))}}");
//Then, if all goes as planned, it will change the href and redirect the user to filtered_search
});
});