レンダリング関数内の関数内の条件を呼び出すときには、条件がtrueの場合のみ。呼び出し関数の内部条件 - Reactjs
次のコードの3行目です。
{this.props.xarray.map((heading, index) =>
{return heading.headingis.toLowerCase().indexOf('mobile') != -1 ?
{this.setcheckstate()} //THIS IS FUNCTION
<option value="{heading.headingis}" key={index} selected>{heading.headingis}</option>
:
<option value="{heading.headingis}" key={index}>{heading.headingis}</option>
}
)}
しかし、これはエラーを返して:
Syntax error: this is a reserved word (51:10)
私は条件が真の場合の状態を変更したいです。
機能は何ですか?それは何を返すのですか? – paqash