我想在JSX元素的属性中添加一个文本字符串。看下面的例子,其中变量otherAttributes
是一个字符串。实际上,在我的例子中,它是一个来自CMS的变量,我想将它作为属性添加。
const otherAttributes = 'target="_blank" rel="follow"';
<a href={href || ''} class="inline-block px-4 py-2 rounded-full" {...otherAttributes}>{text}</a>
输出为
<a 0=""" 1="t" 2="a" 3="r" 4="g" 5="e" 6="t" 7="=" 8="\" 9=""" 10="_" 11="b" 12="l" 13="a" 14="n" 15="k" 16="\" 17=""" 18=""" href="" class="inline-block px-4 py-2 rounded-full" >See more</a>
1条答案
按热度按时间pkmbmrz71#
这对我有用