我正在使用React
中的<FormattedMessage
和react-intl
我有一个json文件
"a": "value is {value}",
"b": "website is <a href=\"http://www.website.ac.io\" target=\"_blank\">www.website.con</a>"
我需要在onClick
的值内编写一个b
函数
"b":"website is <a onclick="{someFunction()}" href=\"http://www.website.ac.io\" target=\"_blank\">www.website.con</a>"
someFunction(){
console.log("Showing Here");
}
不幸的是,我得到
someFunctionis not defined at HTMLAnchorElement.onclick
如何在json中编写onclick函数并在JSX上读取