2
마 젠토 2 객체 리포지토리 필터링
Magento 2에서 제품 저장소를 사용하여 제품 속성별로 필터링 할 수 있습니까? Magento 2에서는 검색 기준 개체를 사용할 수 있습니다 \Magento\Framework\Api\SearchCriteriaInterface $searchCriteria, 그리고 저장소 \Magento\Catalog\Api\ProductRepositoryInterface $productRepository, 객체 목록을 가져 오려면 $searchCriteria->getPageSize(10); $list = $productRepository->getList($searchCriteria); 그러나 searchCriteria 객체에는 직접 필터링 기능이 없습니다. 검색 기준 클래스 에는 filterGroups라는 것을 추가하는 메소드 가 있습니다. …