React组件或从存储数据中替换字符串文字的策略,类似于react-intl

时间:2018-06-22 19:58:18

标签: javascript reactjs

我正在从与此类似的api调用接收数据。

tailwind.css

我正在尝试在响应中显示之前替换字符串文字。有没有一种简单的方法可以做到这一点,就像react-intl FormattedMessage一样?

在react-intl中,我认为如果simplified_response: { variables:{ name: 'John', age: '25', gender: 'male', }, strings:[ '<p>Hello ${name}</p>', '<p>${name},<br/> I understand you are ${age} years old</p>', '<p>${name},<br/> I understand you are ${gender}</p>', }, }; 不存在,您可以做类似的事情

$

1 个答案:

答案 0 :(得分:1)

尝试一下:

    l = locals()
    exec(codeToRun, globals(), l)
    stringToCheck = l['stringToCheck']