0

このポリマー要素をindex.htmlに追加する必要がありますが、問題はありませんでしたが、問題はその「アイテム」divに何も追加できないことです。どうすればこれを行うことができますか? 要素がまだ index.html ページに追加されていないため、スクリプトは「items」div をキャッチできなかったと思います。

 <link rel="import" href="../bower_components/polymer/polymer.html">
    <script src='https://cdn.firebase.com/js/client/2.2.1/firebase.js'></script>
    <link rel="import" href="../bower_components/paper-icon-button">
    <script src='https://ajax.googleapis.com/ajax/libs/jquery/1.11.1/jquery.min.js'></script>


    <dom-module id="sample-page">
      <style>


      </style>
      <template>
        <div class="items">



        </div>

      </template>
    </dom-module>
    <script>
      Polymer({
        is: "sample-page",

      });

        $(document).ready(function(){

      ;
      var rootRef = "myfirebase ref......."
      rootRef.on("child_added", function (snapshot, prevChildKey) {

        var pointData = snapshot.val();
        snapshot.forEach(function (childSnap) {

         $('#items').append( pointData.user);
          var key = childSnap.key();
    //console.log('here come');
    //      console.log("Title: " + pointData.user);

        })

    //  });


      //  });
    </script>
4

1 に答える 1

0

ポリマー要素/ウェブ コンポーネントがロードされるまで待つ必要があります。

それ以外の$(document).ready(function(){});

以下のコード (または同等の JQuery) を使用します。

window.addEventListener('WebComponentsReady', function(e) {
    ...
});
于 2016-01-09T00:40:55.340 に答える