将布道中的道具传递给盖茨比的儿童

时间:2018-02-10 21:05:26

标签: reactjs gatsby

如何将Gatsby布局中的道具传递给子节点(例如Header组件)?

import React from "react";

export default ({ children }) => {
    return <div>{children()}</div>;
};

我找到的资源使用以下格式:

{ props.children({ ...props, foo: true }) }
{ this.props.children({...this.props, updateLayoutFunction }) }

但由于没有props,但只有孩子,我无法让它发挥作用。我尝试了这个,但它也没有用:

{ children({ foo: true }) }

在所有情况下,我都会收到此错误:TypeError: undefined is not an object (evaluating 'history.listen')

https://github.com/gatsbyjs/gatsby/issues/3412#event-1446894145 https://github.com/gatsbyjs/gatsby/issues/2112

1 个答案:

答案 0 :(得分:3)

但是有道具,你只是不把它们传给孩子们。

在布局文件中,而不是:

export default ({ children }) // ... etc

DO

export default (props) {
  const myOwnProperties = { foo: true };

  return (
    {props.children({ ...props, ...myOwnProperties })}
  );
}

您看,道具会自动传递,直到您添加自己的道具。