如何把A表的多选选项传递给B表
// 获取第一个多选按钮的选项 const checkbox1 = document.querySelectorAll('#checkboxField_ld7m204c input[type='checkbox']'); const checkbox1Values = Array.from(checkbox1).map(checkbox => checkbox.value);
// 获取第二个多选按钮的选项 const checkbox2 = document.querySelectorAll('#checkboxField_lh3nb7hh input[type='checkbox']'); const checkbox2Values = Array.from(checkbox2).map(checkbox => checkbox.value);
// 找到两个多选按钮的交集 const intersection = checkbox1Values.filter(value => checkbox2Values.includes(value)); intersection.sort();
// 输出交集 console.log('allchecked',intersection); const doublechecked = this.$('checkboxField_ld7m204c'); doublechecked.setValue(intersection);
最后用了notion ai,在它的帮助下用这个代码解决了A,B表表单同步选取的entity。
赞0
踩0