3 回答

TA貢獻(xiàn)1794條經(jīng)驗(yàn) 獲得超8個(gè)贊
您當(dāng)前的實(shí)現(xiàn)正在執(zhí)行所謂的“短路”,基本上只要第一個(gè)值計(jì)算為真值,第二個(gè)值就會(huì)被返回,否則它可能會(huì)返回undefined。
要修復(fù)您的實(shí)現(xiàn),它應(yīng)該是這樣的:
<table className="tableList tableList--space">
<thead>{this.tableHead()}</thead>
<tbody>
{this.state.products.map((item) => (
<React.Fragment>
{this.tableBody(item)}
{this.tableBodyComplements(item)}
</React.Fragment>
)
)}
</tbody>
</table>

TA貢獻(xiàn)1810條經(jīng)驗(yàn) 獲得超5個(gè)贊
運(yùn)算&&符實(shí)際上不會(huì)同時(shí)返回兩者。如果第一個(gè)參數(shù)為 true,則返回第二個(gè)參數(shù),否則返回 false。例如:
function Example() {
return (
<div>
{"Word1" && "Word2"}
</div>
) // this displays ONLY "Word2", since "Word1" is not a false value.
}
要解決此問題,請(qǐng)將它們包裝在片段中:
{this.state.products.map((item) =>
<React.Fragment>
{this.tableBody(item)}
{this.tableBodyComplements(item)}
</React.Fragment>
)}

TA貢獻(xiàn)1811條經(jīng)驗(yàn) 獲得超6個(gè)贊
在 javascript 中,任何形式的表達(dá)式
a && b
或者
a || b
只會(huì)計(jì)算為或 a。b從來沒有兩者兼而有之。事實(shí)上,甚至不清楚評(píng)估“兩者a和b”的一般含義是什么。
在你的例子中,你想將兩個(gè)元素渲染為 JSX - 所以只需將它們放在一起,包裝在 a 中,F(xiàn)ragment這樣它就是一個(gè)合法的 React 元素:
{this.state.products.map((item) =>
<React.Fragment>
{this.tableBody(item)}
{this.tableBodyComplements(item)}
</React.Fragment
)}
添加回答
舉報(bào)