I am struggling to display a table in an HTML page using ng-repeat. The issue arises when most of the entries in the table are null, as I am unable to replace them with either an empty space or the string "null". I attempted to use {{ row || 'null' }} but it did not provide the desired result. Whenever the table is generated, it becomes messy if there are a large number of null values present.
<table>
<tr>
<th ng-repeat="colname in sqldata.collist">{{colname}}</th>
</tr>
<tr ng-repeat="rows in sqldata.tablist">
<td ng-repeat="row in rows">{{ row || 'null' }}</td>
</tr>
</table>