我使用流星1.3.4.1,kurounin:分頁1.0.9和react-komposer 1.8.0(npm軟件包)。獲取分頁以使用React Komposer
因此,這裏是我的實例作曲家函數內的分頁代碼:
function composer(props, onData) {
console.log('loading pages');
const pagination = new Meteor.Pagination(UfcFighters);
if(pagination.ready()) {
console.log('ready');
const fighters = {
columns: [
{ width: '5%', label: '', className: '' },
{ width: '20%', label: 'Name', className: 'text-center' },
{ width: '20%', label: 'Wins/Losses/Draws', className: 'text-center' },
{ width: '20%', label: 'Weight Class', className: 'text-center' },
{ width: '10%', label: 'Status', className: 'text-center' },
{ width: '10%', label: 'Rank', className: 'text-center' },
],
data: pagination.getPage(),
};
onData(null, { fighters, pagination });
}
};
這是爲陣營Komposer正確使用?我注意到分頁會不斷加載訂閱,並且從來沒有準備好呈現數據。控制檯輸出會反覆說'加載頁面',但它從不說'準備好'。
任何意見,將不勝感激。
那個'onData'調用中的null表示什麼? –