ngTable을 사용하여 다중 언어보기를 원합니다. 이를 위해, 내 컨트롤러에서 $ tratate (유효 json)를 설정하고 내 트레이드를 포함합니다. 나는 마침내 발견했습니다 'ngtable (각형 플러그인)에서 동적 데이터 제목을 설정하는 방법
<table ng-table="tableParams" class="table ng-table-responsive">
<tr ng-repeat="product in $data">
<td data-title="'{{translate.code}}'" > <!-- display : {{translate.code}} -->
{{product.code}}
</td>
<td data-title="['translate.reference']" > <!-- display : empty -->
{{product.reference}}
</td>
<td data-title="'Label'" >
{{product.label}}
</td>
<td data-title="'Size'" ng-show="manageSizeColor == true">
{{product.size}}
</td>
<td data-title="'Quantity'" >
<ac-quantity minquantity="1" cquantity="product.quantity"></ac-quantity>
</td>
<td data-title="'Price'">
<b>{{product.price + currency}}</b>
</td>
</tr>
</table>