我想找到表单上的所有单选按钮,而别管其他输入类型。我的代码如下所示:
form.queryAll("select, input").forEach((Element el) {
if (el is RadioButtonInputElement) {
print ('got radio button');
} else {
print ('got some other input type');
}
}
这会导致除select
被识别为单选按钮之外的所有输入类型。事实上,如果我el
在then
分支中查看(“得到单选按钮”),它总是报告为InputElement
.