繁体   English   中英

如何在 ReactJS 中的字符串内呈现跨度数组?

[英]How to render an array of spans inside a string in ReactJS?

我有一个span元素数组,需要在另一个 static 文本中呈现。

最终结果示例:将312以正确的顺序here the bold numbers are the spans

这是我的代码

generateQuestion() {
    const newState = { ...this.state };
    let numbers= newState.numbers.map((item, index) => <span style={{color: "red"}}>{item.number}</span>)
    let textQuestion = `Place the numbers ${numbers[0]}, ${numbers[1]} and ${numbers[2]} in the right order.`;

    return (
        <div>{textQuestion}</div>
    );
}

问题是我在渲染时得到这个Place the numbers [object Object], [object Object] and [object Object] in the right order

当我直接渲染numbers数组时,我得到了跨度

return (
        <div>{numbers}</div>
);

我该如何解决这个问题?

您正在尝试在字符串中呈现对象,正确的方法是使用 jsx 而不是字符串:

generateQuestion() {
  const newState = { ...this.state };
  let numbers= newState.numbers.map((item, index) => <span style={{color: "red"}}>{item.number}</span>)
  let textQuestion = <div>Place the numbers {numbers[0]}, {numbers[1]} and {numbers[2]} in the right order.<div>;

  return (
      {textQuestion}
  );
}

暂无
暂无

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM