gpt4 book ai didi

json - 如何在 Karate 中将变量用作 json 键?

转载 作者:行者123 更新时间:2023-12-05 02:10:14 24 4
gpt4 key购买 nike

* 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 - 如何在 Karate 中将变量用作 json 键?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/58976200/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com