我应该在哪个三元运算符中为哪个父母申请“ <td>”?

时间:2019-09-03 14:01:09

标签: reactjs

我有一种好奇,就像必须为三元运算符内的conda install powershell_shortcut元素申请父项

conda init

1 个答案:

答案 0 :(得分:1)

您应该使用Fragment包装多个tds。

import { Fragment } from 'react';

<tr>
  <td>id</td>
  <td>name</td>
  {
  row.author == 'anonymous' ?
    <td colspan="2">anonymous</td>
    :
    <Fragment>
      <td>{row.author}</td>
      <td>{row.firstName+' '+row.lastName}</td>
    </Fragment>
  }
</tr>