在我index.html
我有一個paper-scroll-header-panel
與paper-toolbar
和作爲頁面內容的自定義元素:鐵滾動閾值
<body unresolved>
<template is="dom-bind" id="app">
<paper-scroll-header-panel>
<paper-toolbar class="medium-tall">
...
</paper-toolbar>
<!-- Main Content -->
<div class="content">
<x-content></x-content>
</div>
</paper-scroll-header-panel>
</template>
</body>
在x-content
,我有一個firebase-collection
對此我遍歷顯示數據:
<dom-module id="x-content">
<template>
<firebase-collection
limit-to-first="30"
location="myFirebaseURL"
data="{{items}}"></firebase-collection>
<template is="dom-repeat" items="{{items}}">
<x-item item="{{item}}"></x-item>
</template>
</template>
<script>
Polymer({
is: "x-content",
_loadMoreData: function (e) {
// load more
}
});
</script>
</dom-module>
我希望能夠在用戶滾動時加載更多數據。我試圖執行iron-scroll-threshold
,但它不起作用。我希望我需要使用scrollTarget
屬性將它鏈接到將觸發滾動事件的元素,但我不確定我應該使用哪個元素。
我試圖將其設置爲body
,document
和paper-scroll-header-panel
但是當我滾動都未工作 - 有的甚至射擊頁面加載時,沒有滾動發生!
有沒有人試過嗎?
本嗨, 你一找到解決這個問題?我們正面臨同樣的問題。這可能與以某種方式聲明範圍有關嗎? 謝謝 – Cygorger
還沒有。我會再試一次,看看我能不能分類。 –