ReactMount._mountImageIntoNode负责将virtualdom实际mount到dom上,
先是用ReactMarkupChecksum.canReuseMarkup检查是不是可以复用的markup
if (transaction.useCreateElement) { while (container.lastChild) { container.removeChild(container.lastChild); } container.appendChild(markup); } else { setInnerHTML(container, markup); }
时间: 2024-12-15 00:37:29