ngx-smart-table转换标头

时间:2019-12-30 13:42:08

标签: javascript json angular typescript

我是Angular的新手,我有一个使用ngx-smart-table创建的表,并且想要使用ngx-translate转换标题​​,我已经在互联网上进行了搜索并尝试了发现但由于某些原因翻译无法正常工作,谢谢您的帮助

employees.component.ts

this.settings = {
  totalKey: 'total',
  pager: {
    display: true,
    perPage: '5'
  },
  mode: 'external',
  actions: false,
  columns: {
    firstName_FL: {
      title: this.translate.instant('employees.title'),
      data: this.employees.firstName_FL,
    },
}

en.json

"employees": {
    "title": "Employees",
 }

//output appears as employees.title

请告知这是正确的方法还是应该使用其他方法。

0 个答案:

没有答案