我不知道怎么办才能让它看起来足够多了按钮,具体取决于项目。我计算了应该多少酒吧,但我不知道如何显示它们。 powninienem是否使用了一些for循环??
$scope.generateButtons = function () {
var buttons = [],
pageCount = getPageCount(),
buttonCount;
console.log("page " + pageCount);
buttonCount = pageCount > 2 ? 3 : pageCount;
buttons.push(+buttonCount - 1);
buttons.push(+buttonCount);
buttons.push(+buttonCount + 1);
return buttons;
};