-
-
Notifications
You must be signed in to change notification settings - Fork 1.5k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
1 changed file
with
44 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,44 @@ | ||
--- | ||
title: keyVals | ||
description: Returns a KeyVals struct. | ||
categories: [functions] | ||
menu: | ||
docs: | ||
parent: functions | ||
keywords: [] | ||
namespace: collections | ||
relatedFuncs: [] | ||
signature: | ||
- collections.KeyVals KEY VALUES... | ||
- keyVals KEY VALUES... | ||
|
||
--- | ||
|
||
The primary application for this function is the definition of the `namedSlices` parameter in the options map passed to the `.Related` method on the `Page` object. | ||
|
||
See [related content](/content-management/related). | ||
|
||
```go-html-template | ||
{{ $kv := keyVals "foo" "a" "b" "c" }} | ||
``` | ||
|
||
The resulting data structure is: | ||
|
||
```json | ||
{ | ||
"Key": "foo", | ||
"Values": [ | ||
"a", | ||
"b", | ||
"c" | ||
] | ||
} | ||
``` | ||
|
||
To extract the key and values: | ||
|
||
```go-html-template | ||
{{ $kv.Key }} → foo | ||
{{ $kv.Values }} → [a b c] | ||
``` |