문제

How to get product collection by full text search?

        $query = $this->queryFactory->get()->getQueryText();
        $collection = $this->_productCollectionFactory->create();

        $collection->addAttributeToFilter('name', array('like' => '%'.$query.'%'));
        $collection->setPageSize(10); // fetching only 10 products

Any one help in this?

도움이 되었습니까?

해결책

Please check with below url :

https://mage2.pro/t/topic/1121

I hope its work for you.

라이센스 : CC-BY-SA ~와 함께 속성
제휴하지 않습니다 magento.stackexchange
scroll top