0
在這個鏈接上,https://www.i18next.com/formatting.html它表示我們可以使用Intl api進行格式化,但不顯示如何使用它。i18next格式的日期,數字與Intl Api
如何配置i18next使用Intl api的所有日期,時間和數字格式?該例子說它應該很容易,但不會顯示參考例子。
在這個鏈接上,https://www.i18next.com/formatting.html它表示我們可以使用Intl api進行格式化,但不顯示如何使用它。i18next格式的日期,數字與Intl Api
如何配置i18next使用Intl api的所有日期,時間和數字格式?該例子說它應該很容易,但不會顯示參考例子。
,你可以:
i18next.init({
interpolation: {
format: function(value, format, lng) {
if (format === 'intlDate') return new Intl.DateTimeFormat().format(value); // -> "12/20/2012" if run in en-US locale with time zone America/Los_Angeles
return value;
}
}
});
JSON:key: today is the {{now, intlDate}}
電話T:i18next.t('key', { now: new Date() })