我正在开发一个带有分类产品列表的网站,我想根据用户选择的类别过滤产品。用户应该可以选择多个类别。起点是显示所有类别,没有产品。当您选择第一个类别时,您会从该类别中获得产品,当您选择第二个类别时,您只会获得两个类别中列出的产品。
我尝试使用 filterLogic: 'and' 而不是 filterLogic: 'or' 但在这种情况下根本没有显示任何内容。
我的参数:
$('#products').mixitup({
targetSelector: '.mix1',
filterSelector: '.filter1',
sortSelector: '.sort',
buttonEvent: 'click',
effects: ['fade'],
listEffects: null,
easing: 'snap',
layoutMode: 'grid',
targetDisplayGrid: 'inline-block',
targetDisplayList: 'block',
gridClass: '',
listClass: '',
transitionSpeed: 600,
showOnLoad: 'none',
sortOnLoad: false,
multiFilter: true,
filterLogic: 'or',
resizeContainer: true,
minHeight: 0,
failClass: 'fail',
perspectiveDistance: '3000',
perspectiveOrigin: '50% 50%',
animateGridList: true,
onMixLoad: null,
onMixStart: null,
onMixEnd: null
});
我阅读了 mixitup 文档,但没有发现任何对这种特殊情况有帮助的东西。
我错过了什么?
多谢你们!