- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我正在将 react-intl 迁移到 3.0 版,并且需要为 IE 填充语言环境数据。具体来说,我想为 en-US 加载区域设置数据的 polyfill。我只能找到@formatjs/intl-relativetimeformat/dist/locale-data/en
语言环境文件。
if (!Intl.RelativeTimeFormat) {
// eslint-disable-next-line global-require
require('@formatjs/intl-relativetimeformat/polyfill');
// eslint-disable-next-line global-require
require('@formatjs/intl-relativetimeformat/dist/locale-data/en-US');
}
Module not found: Error: Can't resolve '@formatjs/intl-relativetimeformat/dist/locale-data/en-US' in '/xxx/xxx/xxx/xxx/app'
最佳答案
在 "@formatjs/intl-relativetimeformat": "^7.2.0",
中尝试以下格式
import '@formatjs/intl-pluralrules/polyfill'
import '@formatjs/intl-pluralrules/locale-data/en'
import '@formatjs/intl-pluralrules/locale-data/de'
import '@formatjs/intl-relativetimeformat/polyfill'
import '@formatjs/intl-relativetimeformat/locale-data/en'
import '@formatjs/intl-relativetimeformat/locale-data/de'
和
addLocaleData
尚未根据
https://formatjs.io/docs/react-intl/upgrade-guide-3x/#migrate-to-using-native-intl-apis 删除
关于reactjs - 在@formatjs/intl-relativetimeformat/dist/locale-data/中哪里可以找到美国的语言环境,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/57919842/
使用 react-intl 我得到以下消息: serviceFee: { en: 'Service fee: ({fee, number, percent})', ... }, 当我打电话
Formatjs 提供了一个 babel plugin对于使用 react-intl 注入(inject)消息 ID 并删除 description 的模块。我如何将它与 Vite 一起使用? 最佳答
我想在我的 React 应用程序中为我的 i18n 使用 ICU 标准。我想存储我的语言文件,例如 http://userguide.icu-project.org/locale/localizing
是否可以在 FormatJS 消息中使用 if/else? 例子 我有一个 bool 变量 isDay 应该确定显示什么消息。当 true 时,我想显示“Day”字样,当 false 时,我想显示 N
是否可以在 FormatJS 消息中使用 if/else? 例子 我有一个 bool 变量 isDay 应该确定显示什么消息。当 true 时,我想显示“Day”字样,当 false 时,我想显示 N
我正在将 react-intl 迁移到 3.0 版,并且需要为 IE 填充语言环境数据。具体来说,我想为 en-US 加载区域设置数据的 polyfill。我只能找到@formatjs/intl-re
真的很愚蠢的问题 - 正确的 glob 格式是什么?我正在努力奔跑 formatjs extract ./src/**/*.js 但它只深入一层。 最佳答案 对于出现在这个问题上的人: formatj
我是一名优秀的程序员,十分优秀!