具有 space 字符串的选择参数

Choice parameter having strings having space

我正在尝试为作业编写 groovy 脚本以使其具有选择参数。其中一个选择是中间带有 space 的字符串(即 'test env' )。有什么办法可以实现吗?

当前代码 参数 { 选择(名称:'environment_name',描述:'The environment name',选择:'test\ntest env') }

我们有什么方法可以在 groovy 中实现这一目标吗?

只需为 choices 使用列表:

parameters {
   choice(name: 'environment_name',
          description: 'The environment name',
          choices: ['test','test env'])
}