这是我的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表的函数。这该怎么做?有人可以帮我吗?