0

如何查询 shadowRoot 内容元素。我创建了一个自定义表单元素,这个表单在 shadowRoot、FormInput 之外提供了子元素,还有自定义元素。我需要从 shadowRoot 中获取所有孩子。如果我使用 shadowRoot.query 或 shadowRoot.queryAll,从组件外部具有相同的效果,我无法查看子项,被 shadowRoot 混淆。我正在尝试使用 shadowRoot.query("content").getDistributedNodes(); 但是节点列表中的这个文本元素是什么鬼,我的孩子只有一个。

@CustomTag("v-form")
class Form extends VaderComponent {
  bool isValid(){
    bool valid = true;
    var nodes  = shadowRoot.query("content").getDistributedNodes();
    nodes.forEach((element) {
      window.console.debug(element);
      element.queryAll("v-input").forEach((elementTarget){
        if(elementTarget is FormItem){
          window.console.info("É um item de formulário");
          if(elementTarget.xtag.isValid() == false){
            valid = false;
          }
        }

      });

    });
    return valid;
  }
}

<polymer-element name="v-form">
    <template>
        <form>
            <content></content>
        </form>
    </template>
    <script type="application/dart" src="Form.dart"></script>
</polymer-element>


 <v-form id="form">
            <fieldset>
                <legend>Fieldset</legend>
                <div class="row">
                    <div class="large12 columns">

                        <v-input title="Password Example" type="password" placeholder="large-12.columns" />
                    </div>
                </div>
                <div class="row">
                    <div class="large-12 columns">
                        <v-input title="Mask Input" mask="999" type="tel" value="Valor" placeholder="large-12.columns"></v-input>
                    </div>
                </div>

                <div class="row">
                    <div clas="large-4 columns">

                        <v-input title="Input Label" type="date" placeholder="large-4.columns"></v-input>
                    </div>
                    <div class="large-4 columns">

                        <v-input title="Input Label" type="text" allowEpty="false" placeholder="Not Allow Empty Value"></v-input>
                    </div>
                    <div class="large-4 columns">
                        <div class="row collapse">

                            <div class="small-9 columns">
                                <v-input title="Input Label" type="text" placeholder="small-9.columns"></v-input>
                            </div>
                            <div class="small-3 columns">
                                <span class="postfix">.com</span>
                            </div>
                        </div>
                    </div>
                </div>

                <div class="row">
                    <div class="large-12 columns">
                        <label>Textarea Label</label>
                        <textarea placeholder="small-12.columns"></textarea>
                    </div>
                </div>

            </fieldset>
        </v-form>

调用错误是有效的:

#text
 undefined:1
Uncaught Error: Class 'Text' has no instance method 'queryAll'.

NoSuchMethodError : method not found: 'queryAll'
Receiver: Instance of 'Text'
Arguments: ["v-input"] 

如果我只是在 console.debug 中输出项目,我会得到以下信息:

#text
<fieldset>​…​&lt;/fieldset>​
#text

有没有更好的方法?这段代码很难看(两个 forEach (n^2))

4

1 回答 1

0

shadowRoot 和 是不同的。可以正常查询,因为它是 lightdom 的一部分。主体代码变为:

var nodes  = this.queryAll("v-input");
nodes.forEach((element){
if(elementTarget is FormItem){
      window.console.info("É um item de formulário");
      if(elementTarget.xtag.isValid() == false){
        valid = false;
      }
}
});
return valid;

此代码按预期工作

于 2013-10-18T21:55:14.427 回答