用react-intl做国际化的时候,All的时候可以用<FormattedMessage id="helloSomeone" tagName="div" }} /> 这么弄,这种lable=“指标”这种的时候怎么做国际化呢?<FormGroup label="指标" labelFor="text-input" className="bp3-form-group-30P"><div className="bp3-input-group bp3-select bp3-fill" fill="true">
<select name="status" defaultValue={-1} fill="true" onChange={event => this.onChangeValue(event)} > <option value="-1">All</option>
</select></div></FormGroup>
3 回答
呼唤远方
TA贡献1856条经验 获得超11个赞
<FormGroup label={intl.formatMessage({id: 'i18nid': defaultMessage: '指标'})} labelFor="text-input"className="bp3-form-group-30P">
<div className="bp3-input-group bp3-select bp3-fill" fill="true"> <select name="status" defaultValue={-1} fill="true" onChange={event => this.onChangeValue(event)} > <option value="-1"><FormattedMessage id={'i18nid'} defaultMessage="All"/></option> </select></div>
添加回答
举报
0/150
提交
取消