rocky-git / ex-admin-webman

Ex-admin-webman 是一个基于Ant Design of Vue + webman 开发而成后台系统构建工具,无需关注页面模板JavaScript,只用php代码即可快速构建出一个功能完善的后台系统。
Apache License 2.0
30 stars 1 forks source link

下拉多选项,默认会有一个空白的,提交时会有一个null #9

Closed pengdefang closed 1 year ago

pengdefang commented 1 year ago
image
rocky-git commented 1 year ago

数据正常显示应该是数组,而不是字符串噢,有问题可以进群交流群号:579150457

pengdefang commented 1 year ago

$form->select('category_type', '分类')->mode('multiple')->options(Category::selects()); 是表格,添加记录时,下拉选项如果是设置的可多选,初始化就会有一个空白的在那,提交时的值是 category_type:[null,2,5]

rocky-git commented 1 year ago

->mode('multiple') 改成->multiple()

pengdefang commented 1 year ago

好的,谢谢,我可能看文档示例代码时,看到了mode的用法,