2
我是jQuery/JSON的新手。我使用mistic100的querybuilder,但我不確定如何從數據源加載過濾器。在這個例子中,3個過濾器被加載到構建器中。語法明智,我將如何從數據源做到這一點?我想我只是不理解如何遍歷所有的過濾器,如果他們在數據源中。如何遍歷數據源以創建Querybuilder過濾器
$('#builder-basic').queryBuilder({
plugins: ['bt-tooltip-errors'],
filters: [{
id: 'name',
label: 'Name',
type: 'string'
}, {
id: 'category',
label: 'Category',
type: 'integer',
input: 'select',
values: {
1: 'Books',
2: 'Movies',
3: 'Music',
4: 'Tools',
5: 'Goodies',
6: 'Clothes'
},
operators: ['equal', 'not_equal', 'in', 'not_in', 'is_null', 'is_not_null']
}, {
id: 'in_stock',
label: 'In stock',
type: 'integer',
input: 'radio',
values: {
1: 'Yes',
0: 'No'
},
operators: ['equal']
}
}],
rules: rules_basic
});
感謝您的幫助。