2019-10-21 08:22:28 +00:00
---
2023-10-20 07:42:39 +00:00
title: collections.Querify
linkTitle: querify
2021-06-18 15:49:54 +00:00
description: Takes a set or slice of key-value pairs and returns a query string to be appended to URLs.
2019-10-21 08:22:28 +00:00
categories: [functions]
2023-10-20 07:42:39 +00:00
keywords: []
2019-10-21 08:22:28 +00:00
menu:
docs:
2023-05-22 14:43:12 +00:00
parent: functions
2023-10-20 07:42:39 +00:00
function:
aliases: [querify]
returnType: string
signatures:
- collections.Querify KEY VALUE [KEY VALUE]...
- collections.Querify COLLECTION
relatedFunctions:
- collections.Querify
- urlquery
aliases: [/functions/querify]
2019-10-21 08:22:28 +00:00
---
2021-06-18 15:49:54 +00:00
`querify` takes a set or slice of key-value pairs and returns a [query string ](https://en.wikipedia.org/wiki/Query_string ) that can be appended to a URL.
2019-10-21 08:22:28 +00:00
2021-06-18 15:49:54 +00:00
The following examples create a link to a search results page on Google.
2019-10-21 08:22:28 +00:00
2021-06-18 15:49:54 +00:00
```go-html-template
2019-10-21 08:22:28 +00:00
< a href = "https://www.google.com?{{ (querify " q " " test " " page " 3 ) | safeURL } } " > Search< / a >
2021-06-18 15:49:54 +00:00
{{ $qs := slice "q" "test" "page" 3 }}
< a href = "https://www.google.com?{{ (querify $qs) | safeURL }}" > Search< / a >
2019-10-21 08:22:28 +00:00
```
2021-06-18 15:49:54 +00:00
Both of these examples render the following HTML:
2019-10-21 08:22:28 +00:00
2021-06-18 15:49:54 +00:00
```html
2019-10-21 08:22:28 +00:00
< a href = "https://www.google.com?page=3&q=test" > Search< / a >
```