13

如果我错了,请纠正我,ReactIntl​​ 中的 FormattedMessage 返回一个由 span 标签包裹的字符串。在 ReactIntl​​ 1.2 中,我们可以选择this.getIntlMessage('key')仅获取字符串部分。

这是我的问题:在 ReactIntl​​ 2.0 中是否有等价物?我知道字符串可以通过使用 FormattedMessage 中的 Function-As-Child 模式作为

<FormattedMessage id="placeholder">
    {(formattedValue)=>(
        <MyComponent ref="mycomponent" placeholder={formattedValue}/>
    )}
</FormattedMessage>

但是,它弄乱了我组件中的“引用”,我无法再使用该组件this.refs.mycomponent

4

5 回答 5

12

有更好的解决placeholder问题。

<FormattedMessage ...messages.placeholderIntlText>
  {
     (msg) =>  <input type="text" placeholder = {msg} />
  }
</FormattedMessage>
于 2017-06-29T12:40:20.863 回答
9

您可以使用 react-intl 提供的 intl 对象轻松返回字符串。

这就是您以更简单的方式在 React 类中使用 intl 对象的方式。

注意:渲染组件(主要组件)应该用 IntlProvider 包装

class MySubComponent extends React.Component{
  {/*....*/}

  render(){
    return(
     <div>
        <input type="text" placeholder = {this.context.intl.formatMessage({id:"your_id", defaultMessage: "your default message"})}
     </div>

    )
  }
   }
MySubComponent.contextTypes ={
 intl:React.PropTypes.object.isRequired
}

通过定义 contextTypes 它将使您能够使用 intl 对象,它是一个上下文类型道具。有关更多详细信息,请参阅反应上下文。

于 2016-08-26T07:56:52.363 回答
5

好的,有一个解决方法。我可以像这样在组件中添加ReactIntl​​ 作为上下文:

contextTypes: {
    intl: React.PropTypes.object.isRequired,
},

然后,当尝试检索消息的字符串并使用它时,例如在占位符中,我可以这样做。

<MyComponent ref="mycomponent" placeholder={this.context.intl.messages.placeholder}/>
于 2016-02-03T20:34:06.787 回答
1

如果您使用的是功能组件,那么您可以使用useIntl()钩子来获取intl对象并string从下面的代码片段中获取消息。

import {IntlProvider, useIntl} from 'react-intl';

export function MyFunctionalComponent() {
    const intl = useIntl();
    return (
        <div>
            <p>{intl.formatMessage({id: "MyKey"})}</p>
        </div>
    )
}

注意:您的父组件应该包裹在</IntlProvider>提供者周围。

于 2021-02-23T11:06:37.083 回答
0

我使用 React 渲染道具解决了这个问题。

我创建了一个实现它的 npm 包:http: //g14n.info/react-intl-inject/

它是这样的组件

import { injectIntl } from 'react-intl'

export default function reactIntlInject ({ children, ...props }) {
  if (typeof children === 'function') {
    return (
      children(props)
    )
  } else {
    return null
  }
}

您可以使用它来包装组件,例如具有要翻译的道具,例如

import React, { Component } from 'react'
// Import the package I created, available on npm with MIT license....
import InjectIntl from 'react-intl-inject'
// ...or copy the code above in a file in your project and import it, somethong like
// import InjectIntl from './path/to/my/render/prop/component'

class MyComponent extends Component {
  render () {
    return (
      <InjectIntl>
        {({ intl }) => (
          <button
            type='submit'
            value={intl.formatMessage({ id: 'enter.submit' })}
          />
        )}
      </InjectIntl>
    )
  }
}

export default injectIntl(reactIntlInject)
于 2019-03-31T18:56:41.807 回答