I want to send multiple objects in link and be able to get them in my server side. Currently I am trying this:
<a href="?page={{ page }}+?filter={{data.sort}}">{{ page }}</a>
The result I get with console.log(req.query):
GET /products?filterlist=price-high 200 96.523 ms
{ page: '2 ?filter=price-high' }
Is it possible to get object with two (or multiple) parameters?
{ page: '2', filter: 'price-high' }