vue-element-plus-admin
vue-element-plus-admin copied to clipboard
Select组件optionApi无限回调
Form组件optionApi接口返回空数组时,根据代码,length为空会触发回调,造成回调地狱。 仅Select组件会有此问题,TreeSelect组件没问题。自己项目将!item.componentProps?.options.length 判断删除解决 if ( item.optionApi && (!item.componentProps?.options || !item.componentProps?.options.length) ) { // 内部自动调用接口,不影响其它渲染 getOptions(item.optionApi, item) }