我正在编写一个自定义的Grails 2插件来模块化我的Grails应用程序。在插件中,我计划定义可以被将使用插件的应用程序覆盖的基本GSP。我正在考虑编写一个Grails命令脚本,将那些GSP复制到安装插件的应用程序的grails-app
目录中。如果在插件中,我将这些GSP放在grails-app/views
中,我该怎么做请参阅Grails命令脚本中的实际Grails应用程序目录,该脚本也是grails-app/views
?
答案 0 :(得分:0)
对此的解决方案几乎与this answer相同。内置属性 $scope.totalItems = $scope.Users.length;
$scope.currentPage = 1;
$scope.itemsPerPage = 3;
$scope.maxSize = (($scope.Users.length / 3) + 1) ; //Number of pager buttons to show
和<div>
<pagination total-items="totalItems" ng-model="currentPage" max-size="maxSize" class="pagination-md" boundary-links="true" rotate="false" num-pages="numPages" ng-click="pageChanged(user)" items-per-page="itemsPerPage"></pagination>
</div>
可区分目标应用和插件目录。