JSON形式のレスポンスとしてデータベースからデータが来るテーブルのグリッドビューを作成するのが難しいです。 UIとJavascriptコードは同じファイルにあります。アプリケーションのルートパスにnpmパッケージを使用してng-gridをインストールしました。Angular jsでグリッドビューを作成
Index.htmlと
<script src="node_modules/angular-ui-grid/ui.grid.min.js"></script>
<script src="ng-grid-2.0.11.min.js"></script>
<table style="width:50%" class="table table-bordered">
<thead>
<tr>
<th>Select</th>
<th>FR_ID</th>
<th>FR_Client</th>
<th>FR_Source</th>
<th>FR_Destination</th>
</tr>
</thead>
<tbody>
<tr ng-repeat="search in searches">
<td><input type="checkbox" /></td>
<td>{{search.id}}</td>
<td>{{search.client}}</td>
<td>{{search.source}}</td>
<td>{{search.destination}}</td>
</tr>
</tbody>
</table>
<div class="small-12 columns">
<div class="submitButton" id="submitButton" ng-app="searchapp">
<div style="visibility:hidden;">{{y=name}}</div>
<input type="submit" value="Search" ng-click="seachRecords(y)" style="font-size:20px" />
</div>
</div>
</div>
角度:
<script>
var app = angular.module('myApp',[]);
app.controller('myCtrl', function ($scope, $http){
$scope.seachRecords = function (y) {
var httpRequest = $http({
method: 'GET',
url: '/user/search?seachString='+y,
}).then(function (response, status) {
var responsetest = JSON.stringify(response.data);
$scope.searches = response.data;
}, function myError(data, status) {
$scope.searches = data;
});
}
});
</script>
私は添付画像に示すように、テーブルの下に作成することができるが、私は、グリッドビューを取得しようと、それを形成することができないのですこれに必要な変更を提案してください。
<div data-ng-grid="searches"></div>
NOTEを次のように
は、テーブルを使用して、NG-グリッドをサポートしていますか? http://angular-ui.github.io/ui-grid/にはテーブルを使った例はありません。また、 'ng-repeat'の代わりに' ng-grid'を使う必要があります。 – Akurn
コンソールエラーがあるかどうかチェックしましたか?plunkrかjsのコードを共有できますか?また、NGグリッドは古くなっているので、私はあなたにユーグリッドを好むよう依頼するかもしれません。 – Santosh
どのようにthis.Iでuigridを使用することができますuMグリッドをnpmを使用してインストールされている – user3534759