我正在使用i18n-js进行语言环境和翻译。我正在尝试使用插值渲染一个 react-native 组件。
以下是供参考的代码,
// Translate function (exposed using custom hooks)
const translate = useCallback((key, config) => i18n.t(key, config), []);
// locale key with variables to be interpolated
"tnc_text": "Accept {{topUpTnC}} and {{dealsTnC}} to proceed"
// Code which uses translate
<Text>
{translate(
'tnc_text', {
topUpTnC: <Text
style={{color: 'blue'}}
onPress={() => Linking.openURL('https://google.com')}>
Top-Up Terms and Conditions*
</Text>,
dealsTnC: <Text
style={{color: 'blue'}}
onPress={() => Linking.openURL('https://example.com')}>
Deals Terms and Conditions
</Text>,
})}
</Text>
我期待这样的事情:
但相反,我得到了这个:
接受 [object Object] 和 [object Object] 继续
在文档中找不到任何内容。有没有办法用 i18n-js 中的组件替换变量?