我从服务器获取json数据,因为我正在获取特定键的超级脚本标签。像下面一样
"desc": "the month<sup>1</sup>",
这就像字典数组中的多个数据。我正在Flatlist中显示此数据。
我试图按照以下说明在用户界面中进行显示。
var description = get(item, 'desc');
var superscript = '';
if (get(item, 'desc').contains('<sup>1')) {
var regex = /[\u2070-\u209f\u00b0-\u00be]+/g;
superscript = '';
tradingFrequencyDesc = description.replace(regex, superscript);
superscript = '1'; //here hardcoded, But, How to get it from dynamic <sup> tag value
}
但是,它崩溃了,并且显示contains
是不确定的。
有什么建议吗?