如何在 form.io 编辑器中向组件添加默认参数

Howto add default parameters to component in the form.io editor

我想向文件上传控件添加一个默认文件位置,这样当有人将新的文件上传控件放到他们的表单上时,这些值已经被填充。​​

这可能吗?

我发现我能够将文件组件添加到编辑器中的自定义部分,并在此时指定默认存储和文件位置...即

var builder = Formio.builder(document.getElementById('builder'), {}, {
            builder: {
                custom: {
                  title: 'Extra',
                  weight: 20,
                  components: {
                    file: {
                      title: 'file',
                      key: 'file',
                      icon: 'file',
                      schema: {
                        label: 'Upload',
                        type: 'file',
                        key: 'file',
                        input: true,
                        storage: 'url',
                        url: 'https:yourfilelocation'
                      }
                    }
                  }
                }
              }
            })