如何在空手道中使用变量作为json键?
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了如何在空手道中使用变量作为json键?相关的知识,希望对你有一定的参考价值。
* def myvariable = 1
* def schema =
"""
myvariable : '#number',
2: '#number',
3: '#number',
4: '#number',
5: '#number',
6: '#number',
"""
我需要使用“ myvariable”作为键。我怎样才能做到这一点?
答案
您在这里:
* def schema =
* schema.myvariable = 1
* match schema == myvariable: 1
# dynamic key name
* def name = 'myvariable'
* def schema =
* schema[name] = 1
* match schema == myvariable: 1
以上是关于如何在空手道中使用变量作为json键?的主要内容,如果未能解决你的问题,请参考以下文章