<a href={ routeName }>{ label}</a>
参考:React not passing along properties when rendering in variable
我试过了
<a href={# routeName }>{ label}</a>
<a href=#{ routeName }>{ label}</a>
两者都给出错误。
最佳答案
尝试这个
<a href={ ('#' + this.props.routeName) }>{ this.props.routeName }</a>;
您也可以省略
()
<a href={ '#' + this.props.routeName }>{ this.props.routeName }</a>
Example