我已经使用 scalajs-react 几个星期了,到目前为止,我从未使用过 ReactComponentC.apply() 的“children”参数,因为我的孩子 ReactNodes 通常在 c.backend.render() 中有条件地定义。难道我做错了什么?在 ReactComponentC.apply() 中传递子节点有优势吗?在 ReactComponentC.apply() 运行后,我有什么方法可以动态修改这个子列表?
基本上我只是想知道将孩子传递给 ReactComponentB 与在父组件的渲染方法中创建 ReactComponentB 的实例有什么优势。例如:
class Backend($: BackendScope[Props, State]) { //The backend class of the father
def render(p: Props, s: State) = {
ReactComponentB("Child") //I create the child directly in the render method (I didn't pass it as a Child.Varargs)
}
}