我在Angular 2應用中使用ng2-smart-table,並且在分頁中出現問題。我正在加載一個數據對象數組,它顯示正確的前五個(我總共有20個),但表底部的分頁顯示< < >>沒有箭頭之間的數字,如果我點擊右箭頭它向我展示了未來15年。表的設置是:ng2-smart-table的分頁問題
private tableSettings = {
columns: {
id: {
title: 'ID',
filter: false
},
name: {
title: 'Name',
filter: false
},
},
hideSubHeader: true,
attr: {
class: 'id-field'
},
actions:{
edit: false
},
delete:{
confirmDelete: true
},
pager : {
display : true,
perPage:5
}
}
任何想法爲什麼它表示< < >>代替< < 1 2 3 4 >> ?? 謝謝!
萬一有人絆倒這個:https://github.com/akveo/ng2-smart-table/issues/221 – Marie