# 词典类型 词典类型用于存储 “键-值”对 类型的数据。


**参考**
_词典类型在内部使用 Dictionary 实现。_
_键(Key):为C#的String类型_
_值(Value):为C#的Object类型。Object为所有c#类型的基类,可以存储任何类型的内容。_

# 变量定义 ## 默认值的定义/赋值操作里的文本写法 词典变量默认值可以使用两种方式写: - 简单模式:每行一个键值对, 格式为  Key:Value,例如: ![image.png](https://cdn.nlark.com/yuque/0/2020/png/272392/1598593673912-5571581f-775a-4c18-929f-419a1361b8d6.png#crop=0&crop=0&crop=1&crop=1&height=266&id=bQP8t&margin=%5Bobject%20Object%5D&name=image.png&originHeight=531&originWidth=581&originalType=binary&ratio=1&rotation=0&showTitle=false&size=31042&status=done&style=none&title=&width=290.5)
定义了一个词典变量,初始化后包含3个“键-值”对。第一个键为“a”,值为“aaaa”;第二个键为“**b**”,值为“bbbb”;第一个键为“c”,值为“cccc”。
- Json格式: ![image.png](https://cdn.nlark.com/yuque/0/2021/png/272392/1640060291395-9fd9a802-437c-42fe-b838-3b5569c4ec34.png#clientId=u6b553990-66f6-4&crop=0&crop=0&crop=1&crop=1&from=paste&height=305&id=uc3ae95aa&margin=%5Bobject%20Object%5D&name=image.png&originHeight=610&originWidth=732&originalType=binary&ratio=1&rotation=0&showTitle=false&size=40451&status=done&style=none&taskId=u713eb7d6-bde4-4c3a-bb2c-d7ba61d999f&title=&width=366)
![image.png](https://cdn.nlark.com/yuque/0/2021/png/272392/1640060237995-88ba07a1-1acb-4333-a6e9-689f18c2c667.png#clientId=u6b553990-66f6-4&crop=0&crop=0&crop=1&crop=1&from=paste&height=301&id=u4adf9f15&margin=%5Bobject%20Object%5D&name=image.png&originHeight=601&originWidth=993&originalType=binary&ratio=1&rotation=0&showTitle=false&size=36127&status=done&style=none&taskId=ua08ea08b-1f92-4d17-b03b-eaf55e0b302&title=&width=496.5)

# 转换 ## 将词典转换为Json文本 (1)使用“赋值”模块将词典变量赋值给文本变量即可自动转换。
![image.png](https://cdn.nlark.com/yuque/0/2021/png/272392/1640060334210-9b8570e9-506d-4f4a-8d7b-e1832a0d9bc2.png#clientId=u6b553990-66f6-4&crop=0&crop=0&crop=1&crop=1&from=paste&height=408&id=u94e6cf1c&margin=%5Bobject%20Object%5D&name=image.png&originHeight=816&originWidth=1257&originalType=binary&ratio=1&rotation=0&showTitle=false&size=51435&status=done&style=none&taskId=u2f9ac216-0157-46fd-a29c-7e37c61634c&title=&width=628.5)
(2)使用表达式: ``` $= JsonConvert.SerializeObject({词典变量}) ```

# 相关操作模块 - [词典操作](https://www.yuque.com/quicker/help/dictoperations)