how does it work if i want to construct following structure with Typo3's Fluid uri.typolink viewhelper:
/de/suche/?tx_solr[q]=&tx_solr[filter][0]=result_type_filter:award
this is the viewhelper and data should go inside additionaParams, if im not wrong.
{f:uri.typolink(parameter: 2881, addQueryString: 1, additionalParams: 'structureGoesHere')}
example:
{f:uri.typolink(parameter: 2881, addQueryString: 1, additionalParams: 'example')}
output:
/de/suche/?tx_solr%5Bq%5D=&example=
decoded:
/de/suche/?tx_solr[q]=&example=
im stuck the hard way... just using typo3 for the first time trying to wrap my head arround everything, any help is much appreciated.
further explanation: (typo3, fluid, solr) you might ask yourself why do i need this specific structure... we reworked our solr facet architecture - first we used "top nav" buttons were we filtered results per page config - now we replaced this approach with facets for the counter of the specific facets in the top nav - so now we have to pass the correct facet as parameter to know which results to display on reload (ajaxify does not work in this situation, its just for the side menu). this is were the uri.typolink approach finds use.