2
我試圖編寫一種方式來有條件地呈現鏈接。我有以下功能:JSX中的條件鏈接
const renderLinkIf = (content, condition, href) => {
if (condition) {
return (<Link to={href}>{content}</Link>);
}
return (content);
};
隨着它的工作原理很簡單的任務:
{ renderLinkIf('test', true, '/dashboard') }
但是,我想不出如何渲染更復雜的內容:
{renderLinkIf(
<span className={sectionCompleted(30) ? 'completed' : null}>
{sectionCompleted(30) ? <CheckIcon /> : <HeaderPersonalInfo />}
</span> Personal Info,
true,
'/dashboard',
)}
我只是得到語法錯誤。
如何通過renderLinkIf傳遞更復雜的JSX來渲染?
那麼這是一個簡單的修復。謝謝你,先生 :) – Zak