动态href标签在JSX中反应

时间:2016-01-14 00:29:54

标签: javascript reactjs react-jsx

// This Javascript <a> tag generates correctly
React.createElement('a', {href:"mailto:"+this.props.email}, this.props.email)

但是,我很难在JSX中重新创建它

<a href="mailto: {this.props.email}">{this.props.email}</a>

// => <a href="mailto: {this.props.email}"></a>

href标记认为{this.props.email}是一个字符串,而不是动态输入{this.props.email}的值。关于我去哪里的任何想法都不对?

3 个答案:

答案 0 :(得分:30)

它返回一个字符串,因为你将它分配给一个字符串。

您需要将其设置为动态属性,包括其开头的字符串

<a href={"mailto:" + this.props.email}>email</a>

答案 1 :(得分:14)

执行Patrick建议的更多ES6方法是使用模板文字:

<a href={`mailto:${this.props.email}`}>email</a>

答案 2 :(得分:3)

在我看来,一个更好的方法是将它拆分为一个函数和一个 JSX 属性,类似这样:

  <Button
    onClick=sendMail
  >
    Send mail
  </Button>
const sendMail = () => {
  const mailto: string =
    "mailto:mail@gmail.com?subject=Test subject&body=Body content";
  window.location.href = mailto;
}