下面是我的代码。currentHtmlBlocks -> 它是数组中的 html 列表。(例如['<div>1</div>', '<div>2</div>', <div>3</div>])
<Frame
height="100%"
width="100%"
key={Math.random()}
srcDoc={currentHtmlBlocks.reduce((acc, el) => acc + el, "")}
/>
当数组使用数组内的新 HTML 条目更新时,如何重新渲染?