querify

将以下英文翻译为中文:

querify

https://gohugo.io/functions/querify/

Takes a set or slice of key-value pairs and returns a query string to be appended to URLs.

语法

querify KEY VALUE [KEY VALUE]...
querify COLLECTION

querify takes a set or slice of key-value pairs and returns a query string that can be appended to a URL.

The following examples create a link to a search results page on Google.

1
2
3
4
<a href="https://www.google.com?{{ (querify "q" "test" "page" 3) | safeURL }}">Search</a>

{{ $qs := slice "q" "test" "page" 3 }}
<a href="https://www.google.com?{{ (querify $qs) | safeURL }}">Search</a>

Both of these examples render the following HTML:

1
<a href="https://www.google.com?page=3&q=test">Search</a>

另请参阅