🔥码云GVP开源项目 12k star Uniapp+ElementUI 功能强大 支持多语言、二开方便! 广告
>[danger] 友情提示:构建器目前只支持HisiPHP Pro版本([我要升级](https://www.hisiphp.com/authorize.html)) ## 多图上传(images) | 参数 | 类型 | 必须 | 默认 | 说明 | --- | --- | --- | --- | --- | | type | string | Y | | 固定值:images | | name | string | Y | | 字段名称 | | title | string | Y | | 标题 | | grid | Array | N | [12, 12, 12, 12] | [栅格布局](栅格布局.md)| | url | string | N | 当前控制的upload方法 | 文件上传接口 | | exts | string | N | | 允许上传的文件后缀,多个后缀用`|`隔开 | | tips | string | N | | 提示说明 | >[info]![](https://box.kancloud.cn/bc4f5ac7e2dd25814c39fdf27330e036_1362x282.jpg) 上传后的效果: ![](https://box.kancloud.cn/7e7afdc4efc66c4f287054d7524cd2db_1400x306.jpg) >[]示例代码: ``` $assign['buildForm']['items'] = [ [ 'type' => 'images', 'title' => '多图上传', 'name' => 'images', 'exts' => 'jpg|png|gif', 'url' => url('upload'), 'tips' => '允许上传的后缀:jpg,png,gif', ], // 更多表单项.... ]; $this->assign($assign); ```