0

t9nライブラリを使用してテキストを翻訳しようとしていますが、このエラーが発生します

Compiling...
Error compiling ICU message for locale en-US: SyntaxError: Expected "=", "}", or identifier but "," found.

To debug this set DEBUG_ICU to 'true'

React JSでこのコードを使用すると

`t9n("{count, plural, one {one other}, others {# others}}", { count: userIds.length - 1 })`;

どうすればこれを解決できますか?

4

1 に答える 1

0

いくつかのエラー コンマが前にあってはならずothers、あるothersべきですother。また、これはより最適であるため、に変更{one other}することもできます。{# other}

`t9n("{count, plural, one {# other} other {# others}}", { count: userIds.length - 1 });`
于 2020-03-09T10:49:42.950 に答える