如何在 apostrophecms js 文件中获取当前语言环境

How to get the current locale in apostrophecms js file

我的模块之一的 public 文件夹中有 js 文件。我希望当前选择的语言环境在同一个文件中。其中文件有定义

apos.define('test-widgets', { improve: 'test-widgets', construct: function (self, options) { } }.

在这个定义里面还有构造函数。

我可以在 html 文件中使用 data.workflow.locales['fr'].label 获取语言环境标签,但同样的事情我无法在 public js 文件中获取。

提前感谢您的帮助!

我通过参考得到了解决方案

How to access options inside apos.define?

感谢@stuart-romanek 的大力帮助!