Skip to content

Insert Records into Data Tables

Parameter Configuration

ParameterDescription
Data TableThe data table to query
CreatorRecord creator, which can be dynamically specified through expressions
Validate Form RulesWhen enabled, it will validate field rules set in the form when creating records
Skip Summary Data CalculationWhen enabled, the refresh of summary fields in this table will not be triggered after data insertion
Set Field ValuesSet field values for creating records, which can be dynamically specified through expressions

Return Values

Return ValueTypeDescription
RecordRecordThe data of the created record

Notes

  • Validate Form Rules: When enabled, form validation rules set in the form will be used when creating records

  • Skip Summary Data Calculation: When enabled, the refresh of summary fields in this table will not be triggered after data insertion

  • For list-type fields like Sub-Object, Relation List, and Lookup List, an array type needs to be passed. For example, if the data table structure displayed by the list type is:

    Field IdentifierField NameField Type
    nameNameSingle Line Text
    ageAgeNumber

    The required data structure to pass is:

    javascript
    ${
        [
            { "name":"张三", "age":20 },
            { "name":"李四", "age":22}
        ]
    }