Skip to content

Upload Excel

Overview

Upload and parse Excel files on the client side, and send the parsed content to the server.

Parameter Configuration

ParameterDescription
Dialog TitleThe title content of the window. Dynamic content can be specified using expressions to obtain context variables
Dialog Top DistanceThe distance from the top where the dialog is displayed. Dynamic content can be specified using expressions to obtain context variables
Data FormatThe returned data format after parsing the uploaded Excel
Description TextDescriptive text displayed to the user

Return Value

Return ValueTypeDescription
Data ListArray<Object>Data list after Excel parsing

Notes

This step is implemented by parsing Excel data on the client side, so it is not recommended to use this step if there is too much Excel data to upload. You can use the Upload File step, and then use the Excel Parsing provided by the platform to read the data.

Usage Instructions

  • When the data format is Array

    The row data in Excel will be returned in array format.

  • When the data format is Object

    The row data in Excel will be returned in object format.

  • Description Text

    For the data binding usage of description text, please refer to

Usage Scenarios

  • Upload custom Excel data and use the parsed data

Usage Examples