7

我有一个相当简单的页面,它调用 2 个静态 json 文件来填充它,如果我看起来很快,我在 FF 和 chrome 中注意到的是我在运行时在页面中看到标签,然后它们在一秒钟后更新(字面意思500 毫秒后)

这是一个简短的视频。

http://screencast.com/t/RZhEIxKj5

这是瀑布的样子

http://screencast.com/t/Be3JvLIYK00P

这是控制器的样子

function HotelsController($scope, $http) {
  $http.get('data/hotels.json').then(function(res){
    $scope.hotels = res.data;                
    });
}


function ConfirmationsController($scope, $http) {
  $http.get('data/confirmations.json').then(function(res){
    $scope.confirmations =  res.data;
    if ($scope.confirmations.length > 0) {
        $scope.showConfirmations = "1";
        } 
    else {
        $scope.showConfirmations = "0";
        }             
    }); 
}

这就是我的 json 的样子

[
    {
        "nights": 2,
        "hotel": "Hotel McCormick Place",
        "confirmationNumber": "2345J453",
        "checkIn": "18-Dec",
        "checkOut": "20-Dec",
        "roomType": "King, None-Smoking"
    },
    {
        "nights": 1,
        "hotel": "ABC Inn",
        "confirmationNumber": "1234567",
        "checkIn": "20-Dec",
        "checkOut": "21-Dec",
        "roomType": "Standard, None-Smoking"
    }
]

[
    {
        "name": "Empire Hotels",
        "img": "http://placehold.it/96x64",
        "address": "123 Main Street, Texas"
    },
    {
        "name": "Lemon Tree Hotel",
        "img": "http://placehold.it/96x64",
        "address": "123 Main Street, Texas"
    },
    {
        "name": "Palm Fiber",
        "img": "http://placehold.it/96x64",
        "address": "123 Main Street, Texas"
    }
]
4

1 回答 1

11

使用ng-cloak类来控制这个闪光灯。检查详细帮助 ins angular 的 FAQ 页面 — http://docs.angularjs.org/api/ng.directive:ngCloak

在模板中:

<div ng-app class="ng-cloak">
    …
</div>

在 CSS 中:

.ng-cloak {
    opacity: 0;
}
于 2013-06-11T22:10:39.320 回答