Is it possible with Views module to create a search and results page?
I know Drupal has built in search module, but I want more flexibility and control. Is it possible using Views to create the search form a开发者_StackOverflow社区nd results pages?
Sure. There's two ways. One is to use Views filters: just create the view for the results page, add a filter, and expose the filter. You can create a search block by checking the option to create a block for the exposed form in the Views settings. Load the Advanced Help module for more information about Views filters.
The other way is to use Apache Solr and the Apache Solr Views module. Same idea as just using Views filters, but it'll use the Solr search backend instead of just doing SQL queries to the database.
精彩评论