このポリマー要素を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>