AngularJS的列表显示

table的头:
                    
标题 创建人 创建时间 接受角色

table获取服务器返回数据列表展示:juicer

JS 获取list:(angular的时间格式化$filter

showTables:function (param) {
            var params=param||{};
            var url='/rest/sysNotice/test';
            $timeout(function () {
                $("#table").loadList({
                    url: url,
                    params: params,
                    pageSize: 10,
                    template: 'role_list_tpl',
                    headers: {
                        'Content-Type': 'application/json;charset=utf-8'
                    },
                    loading: false,
                    success: function (data, table) {
                        if(data.success) {
                            toaster.pop("success", "查询列表", data.message);
                            $scope.list = data.result;
                            angular.forEach($scope.list.list,function (item) {
                                item.createTime=$filter('date')(item.createTime,'yyyy-MM-dd HH:mm');
                            });
                        }else{
                            toaster.pop("error", "查询列表", data.message);
                        }

                        $scope.$apply();
                    },
                  afterRender: function (dom) {
                      var $div = dom[0];
                      var $table = $(".data-header")[0];
                      angular.element(document).injector().invoke(
                          function ($compile) {
                              $compile($div)($scope);
                              $compile($table)($scope);
                          });
                   }
                });
            })
        }


你可能感兴趣的:(AngularJS)