我怎么知道在 Jenkins 中选择了哪个单选按钮?
How can I know which radio button is selected in Jenkins?
我如何知道在 Jenkins 中选择了哪个单选按钮?
我的代码示例:
<f:section title="Select or upload application file">
<f:radioBlock checked="true" name="file" value="" title="Upload new version" inline="true">
<f:entry title="File Path" field="appFile">
<f:textbox/>
</f:entry>
<f:entry title="New Version" field="newVersion">
<f:textbox/>
</f:entry>
</f:radioBlock>
<f:radioBlock checked="false" name="file" value="" title="Available versions" inline="true">
<f:entry title="" field="oldVersion">
<f:select/>
</f:entry>
</f:radioBlock>
</f:section>
一个好的开始是寻找其他插件。
果冻here长这样
<f:radioBlock name="testToRun" value="BUILTIN_FUZZ" checked="${instance.isTestType('BUILTIN_FUZZ')}" title="Built-in Fuzz" inline="true">
<f:nested>
<f:entry title="Event Count" field="eventCount" description="[Optional] Number of fuzz events.">
<f:textbox/>
</f:entry>
<f:entry title="Event Throttle" field="eventThrottle" description="[Optional] Number for event throttle.">
<f:textbox/>
</f:entry>
<f:entry title="Seed" field="seed" description="[Optional] Seed to use for randomizing events.">
<f:textbox/>
</f:entry>
</f:nested>
</f:radioBlock>
它使用定义的函数 here
public String isTestType(String testTypeName) {
return this.testToRun.equalsIgnoreCase(testTypeName) ? "true" : "";
}
您需要将选中的 属性 绑定到实例中的某些内容
checked="${instance.isTestType('BUILTIN_FUZZ')}"
并在 class
上有一个 public 属性
public String testToRun;
并将该字段添加到 DataBoundConstructor
@DataBoundConstructor
@SuppressWarnings("unused")
public AWSDeviceFarmRecorder(String projectName,
String devicePoolName,
String appArtifact,
String testToRun,
并且您已经
inline="true"
因此您不必添加具有自己的 DataBoundConstructor 的内部 classes。
我如何知道在 Jenkins 中选择了哪个单选按钮?
我的代码示例:
<f:section title="Select or upload application file">
<f:radioBlock checked="true" name="file" value="" title="Upload new version" inline="true">
<f:entry title="File Path" field="appFile">
<f:textbox/>
</f:entry>
<f:entry title="New Version" field="newVersion">
<f:textbox/>
</f:entry>
</f:radioBlock>
<f:radioBlock checked="false" name="file" value="" title="Available versions" inline="true">
<f:entry title="" field="oldVersion">
<f:select/>
</f:entry>
</f:radioBlock>
</f:section>
一个好的开始是寻找其他插件。
果冻here长这样
<f:radioBlock name="testToRun" value="BUILTIN_FUZZ" checked="${instance.isTestType('BUILTIN_FUZZ')}" title="Built-in Fuzz" inline="true">
<f:nested>
<f:entry title="Event Count" field="eventCount" description="[Optional] Number of fuzz events.">
<f:textbox/>
</f:entry>
<f:entry title="Event Throttle" field="eventThrottle" description="[Optional] Number for event throttle.">
<f:textbox/>
</f:entry>
<f:entry title="Seed" field="seed" description="[Optional] Seed to use for randomizing events.">
<f:textbox/>
</f:entry>
</f:nested>
</f:radioBlock>
它使用定义的函数 here
public String isTestType(String testTypeName) {
return this.testToRun.equalsIgnoreCase(testTypeName) ? "true" : "";
}
您需要将选中的 属性 绑定到实例中的某些内容
checked="${instance.isTestType('BUILTIN_FUZZ')}"
并在 class
上有一个 public 属性public String testToRun;
并将该字段添加到 DataBoundConstructor
@DataBoundConstructor
@SuppressWarnings("unused")
public AWSDeviceFarmRecorder(String projectName,
String devicePoolName,
String appArtifact,
String testToRun,
并且您已经
inline="true"
因此您不必添加具有自己的 DataBoundConstructor 的内部 classes。