0

shadowRoot コンテンツ要素を照会する方法。カスタムフォーム要素を作成します。このフォームには、shadowRoot、FormInput、およびカスタム要素の外側に子が用意されています。shadowRoot からすべての子を取得する必要があります。shadowRoot.query または shadowRoot.queryAll を使用すると、コンポーネントの外部から同じ効果があり、子を表示できず、shadowRoot によって難読化されます。shadowRoot.query("content").getDistributedNodes(); を使用しようとしています。しかし、ノード リスト内のこのテキスト要素は一体何なのですか。私の子供は 1 つだけです。

@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

より良い方法はありますか?このコードは醜いです (2 つの 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 に答える