本教程操作环境:Windows10系统、react18.0.0版、Dell G3电脑。
react怎么动态增加节点?
React-动态插入节点组件
引入组件后,可以通过调用方式来插入显示组件
KmcDialog.showInstance = function(properties) {
if (!document.getElementById("KmcDialog")) {
let props = properties || {};
let div = document.createElement('div');
div.setAttribute('id', 'KmcDialog');
document.body.appendChild(div);
ReactDOM.render(React.createElement(KmcDialog, props), div);
}
}
KmcDialog.removeInstance = function() {
if(document.getElementById("KmcDialog")) {
document.getElementById('KmcDialog').remove();
}
}
在需要使用的地方直接调用:
KmcDialog.showInstance({
isShow: true
});
KmcDialog.removeInstance();
以上就是react怎么动态增加节点的详细内容,更多请关注编程网其它相关文章!