我正在从与此类似的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>',
},
};
不存在,您可以做类似的事情
$
答案 0 :(得分:1)
尝试一下:
l = locals()
exec(codeToRun, globals(), l)
stringToCheck = l['stringToCheck']