我需要翻译“访问被拒绝。请登录”和链接组件所包含的“登录”。
我正在使用 react-redux-i18n 助手。
import {I18n} from 'react-redux-i18n';
render() {
return (<Jumbotron>{I18n.t('accessDeny')}</Jumbotron>);
}
我努力了
export default {
accessDeny: "Access denied. Please <Link to='/'>log in</Link>",
}
但它以纯字符串形式返回:
Access denied. Please <Link to='/'>log in</Link>
而不是超链接中的“登录”:
Access denied. Please <a href='/'>log in</a>
你能给我一些建议吗?