我的代码有问题,无法根据条件设置SelectElement的selected选项:

@Override
public void setModel(String s) {
    int children = this.getElement().getChildCount();
    int i = 0;
    while(i < children){
        Node child = this.getElement().getChild(i);
        final Element el = child.cast();
        if (Element.is(el)) {
            if(el.getAttribute("attribute_to_check") != null){
                if(el.getAttribute("attribute_to_check").equalsIgnoreCase(s)){
                    SelectElement se = this.getElement().cast();
                    se.setSelectedIndex(i);
                }
            }
        }
        ++i;
    }
}

<option>中的每个SelectElement都有一个名为attribute_to_check的唯一字符串属性,代码将其与要选择的所需选项进行比较。
问题是,如果位于索引0处的字符串,让我们调用它option0
通过option0,选择的是option3
如果传递的字符串是option1则选择的选项是
option5等等。
这种跳转模式发生的代码有什么问题?

最佳答案

我敢打赌在选择中有非元素的子元素。
仅当i或更好的循环Element.is(el)时,尝试递增SelectElement#getOptions()

关于java - 设置SelectElement的选定选项,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/27671270/

10-14 00:14