例如,我有名称空间ns1
const {t} = useTranslation(['ns1']);
ns1包含:
{
"form": {
"title": "Title of {{name}}"
}
}
如果我打印字符串,其中const name='"hello"';
console.log(t('form.title', {name}));
我将得到以下结果:
> Title of "hello"
如何修复它?