我在我的日誌目錄中有一個gitignore,現在我想顯示該目錄中的所有文件名,但.gitignore
也顯示如何忽略該文件使用ng-repeat
表和顯示其餘文件?如何忽略使用角度ng-repeat的表的特定數據?
main.html中
<table>
<tr ng-repeat="file in filename_data">
<td>{{ file }}</td>
<td><button type="button" class="btn btn-primary" ng-click="downloadServerFile(file)">download</button></td>
</tr>
</table>
ctrl.js
$scope.filename_data = [".gitignore","server.log","server1.log"];
你如何填充'$ scope.filename_data'?如果它真的像你所說的那樣是一個靜態數組,那麼只需刪除'.gitignore'。 – CollinD
文件名來自後端,請刪除? – hussain
你可以讓後端排除'.gitignore'嗎?或者只是在收到數組時過濾數組? – CollinD