英文:
How to echo value enter by user in "formatted HTML" in Active Choice Reactive Reference Parameter in Jenkins Pipeline
问题
我有一个名为“Active Choice Reactive Reference Parameter”的选择类型为“Formatted HTML”的参数,grove脚本如下。
名称:FA
if{!PATCH.equals("Verify")}
return "<input name='FA' value='' class='setting-input' type='text'>"
}
我的流水线脚本将是。
echo "${params.FA}"
它打印出空值。
是否有任何方法在流水线中使用这些值。
英文:
I have "Active Choice Reactive Reference Parameter" with choice type "Formatted HTML" and grove script as below.
Name : FA
if{!PATCH.equals("Verify")}
return "<input name='FA' value ='' class='setting-input' type='text'>"
}
My pipeline script will be.
echo "${params.FA}"
it's printing the null value.
Is there any way to use these values in pipeline.
答案1
得分: 2
尝试这个:
return "<input name='value' value='' class='setting-input' type='text'>"
在管道中打印变量如下:
print(params.FA)
记住<input>
元素的2个必需属性:
name='value' 和 class='setting-input'
英文:
Try this:
return "<input name='value' value ='' class='setting-input' type='text'>"
In pipeline print the variable like:
print(params.FA)
Remember 2 mandatory attributes for the <input>
name='value' and class='setting-input'
通过集体智慧和协作来改善编程学习和解决问题的方式。致力于成为全球开发者共同参与的知识库,让每个人都能够通过互相帮助和分享经验来进步。
评论