1
こんにちは、すごいStackoverflow、角度jsを学習しているので、角のjsを介してデータベースレコードを照会して、すべて正常に動作します。今私は、データベースのコンテンツが読み込まれていると、画像が表示されるようにしたいと画像は、コンテンツが読み込まれるとすぐに消えます。どうすればそれを達成できますか?おかげで以下角度jsの読み込みイメージを表示する方法
はあなたが$http.get("data.php").success(function(response){
行の前$scope.loading = true;
のようになめらかに追加することができます作業コード
var app = angular.module('angularTable', ['angularUtils.directives.dirPagination']);
app.controller('listdata',function($scope, $http){
$scope.users = []; //declare an empty array
$http.get("data.php").success(function(response){
$scope.users = response; //ajax request to fetch data into $scope.data
});
$scope.sort = function(keyname){
$scope.sortKey = keyname; //set the sortKey to the param passed
$scope.reverse = !$scope.reverse; //if true make it false and vice versa
}
});
のような一般的な$ http要求の例を作成しました。[ここ](https://jsfiddle.net/2yguh217/29/)が好きな人は見てください。 –