如何在 angular-google-chart.js 中格式化日期中的工作日

How to format weekdays in a date in angular-google-chart.js

我查看了给定 here 的日期格式文档。

它说 "EE or EEE Produce Tu or Tues"。我试过了

format: "dd \n EE \n MMM"

日期和月份都可以,但结果会产生 "Tue"。我希望结果是 "Tu" 即任何工作日的前两个字符。

有人可以帮助我吗?或者建议一些实现这种格式的方法。

过滤器和 Google 图表 API 的 DateFormatter 中没有 EE,它继承自 angular js 过滤器:https://docs.angularjs.org/api/ng/filter/date

但您可以 trim 格式后日期字符串的最后一个字符。 dateformat = {{( string | limitTo: 10 ).trim()}}