Vue2
Vue3
Appearance
如果数据库字段存的是ids组成的字符串:
1,2,3
后端封装:前端传数组,后端用 String.join(",", ids) 存库。
String.join(",", ids)
[1,2,3]