滿天的星座2017-05-15 17:09:17
In fact, you can just change ng-if to write like this: ng-if="$index <= pagenum * 6 && $index >= (pagenum - 1) * 6"
$index
is 0, the first condition is met, so the return value is the second condition. And 0 is not greater than 0, so return false
If you are writing pagination, consider using filter
写可能会比较好,不需要用 ng-if
In addition, it is customary to process data, such as your txt.split('|')
, in the controller, rather than in html.