gpt4 book ai didi

reactjs - 如何在 react 状态下将 HTML 存储为对象属性的值?

转载 作者:行者123 更新时间:2023-12-02 17:05:18 25 4
gpt4 key购买 nike

我的 FAQ 组件中有这个状态:

this.state = {
faqs: [
{
question: "Some question string",
answer: "Some answer string"
},
{
question: "Some question string",
answer: "Some answer string"
}
]
};

我在 render 方法中循环以显示每个 FAQ 集。但是,我的“答案”属性需要包含 <p></p>标签如:

{
question: "Some question string",
answer: "<p>Some answer string</p> <p>Some answer string</p>"
}

我如何在 React 中实现这一点?

最佳答案

只需用 Fragments 包裹它。

{
question: "Some question string",
answer: <><p>Some answer string</p> <p>Some answer string</p></>
}

或者用这个

{
question: "Some question string",
answer: <React.Fragment><p>Some answer string</p> <p>Some answer string</p></React.Fragment>
}

关于reactjs - 如何在 react 状态下将 HTML 存储为对象属性的值?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/52049461/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com