如何在html表绑定时在angularjs中添加加载器

时间:2016-07-18 09:33:56

标签: angularjs

这是我的html表

relabeledImage

这是我用于绑定html表的angularjs代码

<body ng-app>    
    <div class="wrapper wrapper-content" ng-controller="InboxMailCtrl">                             
        <table>    
            <tbody>
                <tr>
                    <td><a href="" ng-click="ViewEmailDetails(CU.InboxMailID)">{{CU.Reciever}}</a></td>
                    <td class="text-right mail-date">{{CU.time}}</td>
                </tr>
            </tbody>
        </table>
    </div>
</body>

每件事都很好。我的问题是我想在加载数据表时添加一个加载器。实际上很多数据都是绑定的,所以我想添加一个加载器。 var InboxMailCtrl = function ($scope, $http) { if (loginuserid != null) { BindInboxList(); } function BindInboxList(Data) { var UserEmail = sessionStorage.getItem("loginUserID"); var obj = { data: UserEmail } $http({ url: "MailRoute/getDataForMail", dataType: 'json', method: 'POST', data: obj, headers: { "Content-Type": "application/json" } }).success(function (response) { }).error(function (error) { alert(error); }); } }; 是angularjs中用于绑定html表的函数。这该怎么做?有人可以帮我吗?

1 个答案:

答案 0 :(得分:0)

你真的需要装载机吗? ng-bind https://docs.angularjs.org/api/ng/directive/ngBind可以做到这一点。