React:如何让孩子成为字符串?

时间:2016-09-30 20:03:15

标签: reactjs

我正在编写我们正在构建的几个组件的文档,因此doc(也是一个反应组件看起来像这样:

const myDoc = () => (
  <div>
    <MyComponent title="MyTitle" />
    <code className="language-jsx">
       {`<MyComponent title="MyTitle" />`}
    </code>
  </div>
)

请参阅MyComponent上的重复内容?所以我创建了“代码”组件来处理:

const Code = ({ children }) => (
  <div>
    {children}
    <code>
       {children}
    </code>
  </div>
)

然后MyDoc现在是:

const myDoc = () => (
  <Code>
    <MyComponent title="MyTitle" />
  </Code>
)

但由于Code中的子节点是一个对象,因此它不会呈现为字符串。

有没有办法实现这个目标?或者更好的解决方案?

3 个答案:

答案 0 :(得分:2)

试试这个:

const MyComponent = ({
  title
}) => (
  <div>{title}</div>
)

const MyDoc = () => (
  <Code>
    <MyComponent title="My title" obj={{obj: {obj: 1}}}>
      <MyComponent title="My another component title">
        <MyComponent title="My another component title" />
      </MyComponent>
    </MyComponent>
  </Code>
)

const Code = ({
  children
}) => (
  <div>
    {children}
    <pre><code>
      {JsxString(children)}
      </code></pre>
  </div>
)

const JsxString = (component, counter = 0) => {
  let type = component.type.name;
  let props = component.props;
  let propsString = "";
  for (let key in props) {
    if (key !== "children") {
      let propValue = props[key];
      let value = "";
      if (propValue instanceof Object) {
        value = `{${JSON.stringify(propValue).replace(/['"]+/g, '')}}`;
      } else {
        value = `"${propValue}"`;
      }
      propsString += ` ${key}=${value}`;
    }
  }
  if (props.children) {
    counter += 2;
    var children = JsxString(props.children, counter);
    return `<${type}${propsString}>
${Array(counter).join(" ")}  ${children}
${Array(counter).join(" ")}</${type}>`;
  }
  return `<${type}${propsString} />`;
}

ReactDOM.render(
  <MyDoc />,
  document.getElementById('container')
);

答案 1 :(得分:2)

我还在编写文档,每次更改演示时我也不想更改markdown文件。我想要像element.innerHTML等价的东西。

我偶然发现了这个答案,在进一步搜索时,我发现这个包在github中名为jsxToString

只是提到以防其他人也试图在这篇文章中做文档和绊倒。

答案 2 :(得分:0)

你真的没有重复。由于第一个<MyComponent title="MyTitle" />是(编译和)运行的代码,但第二个是要显示的字符串。一旦从JSX编译到JS,它们之间就没有太大的相似性,这使得最好以通用的方式从另一个中获取一个。

我建议你原样离开。