我很难接受复杂的表格。大约有400个问题,其中大多数是收音机选择。我认为这是useMemo
或createRef
,useRef
之类的东西,因此只有第一个空白组件才能获得true
结果以供样式显示。
请帮助我。
这是与来源的基本相似
const SeveralForms = () => {
return(
// hope pseudo code is ok
// like 10 of these
<Form>
)
}
const Form = () => {
return(
// about 30 of these
<RadioGroup>
)
}
const RadioGroup = () => {
const show = () => (pesky logic i cant pin down)
return(
<div style={{display: show() ? 'block' : 'none' }}>
<RadioButton />
<RadioButton />
<RadioButton />
</div>
)
}
答案 0 :(得分:0)
为什么不简单:
<ng-container *ngTemplateOutlet="tab.content"></ng-container>