Skip to content

Data User Guide

Template

上传文件的模版,包含字段名和数据类型的要求,按照对应的格式准备数据上传。

注:模版中的内容全部保留,数据从第三行开始算

Upload

批量导入数据

注:仅支持csv格式的文件

建议使用UTF-8的csv文件。

为避免数据串行问题,可用记事本将csv文件打开,将不带双引号包着的某个字段放到最后一列,保存后上传。 img_2.png

img_2.png

四种导入数据的方式:

1、Overwrite

全量覆盖:将之前数据全部删除后导入新数据

2、Append

追加:保留之前数据,增加新导入的数据

3、Modify

批量修改数据,上传的文件需要带主键id

4、Delete

批量删除数据,上传的文件需要带主键id

Download

数据全量下载

+NEW

单条数据的新增

增加 NEW按钮,填入数据后提交

数据id/createby/createtime/lastupdateby/lastupdatetime 不可编辑操作

img_2.png

Edit

单条数据修改,修改后提交。

数据id/createby/createtime/lastupdateby/lastupdatetime 不可编辑操作

img_3.png

Delete

单条数据删除

界面的批量删除、与修改

有勾选时,修改与删除按钮显示。可以进行批量的删除与修改,除了id以外不能有其他的要求唯一的字段才能进行批量修改。 img.png

界面的搜索

在输入框中输入搜索的内容,就会出现索引字段:内容的模糊搜索选项。搜索框失去焦点时执行搜索, img.png

子表单功能

在创建form的时候,给子表单的form添加parent_id,parent_id为父级表单的form_id。一个表单可以有多个子表。 img.png

在data界面,如果有子表单,点编辑。如下

img_1.png

img_2.png

子表单支持增删改查

img_3.png

refresh功能

一键刷新当前表所有的关联物化视图以及更新cube的缓存 message提示刷新的视图以及cube的名称

img.png

share功能

分享的两种模式: a、分享新建、不勾选数据,让用户新建。用户可以看到自己新建的数据。 b、分享编辑、勾选数据分享给用户。share的时候将对应的本条数据的createby修改为被分享用户 img_1.png

share form表单所有的share用户都可以新建data share 数据(单条或者多条)只能share一个用户,用户可以对该条信息进行增删改查

event事件

远程获取下拉列表数据

访问地址:https://g8hk7lagpe.execute-api.us-west-2.amazonaws.com/olap_prod_v2_internal/interface/formdatalist 参数 form_id : field: 通过form_id获取指定字段名作为下拉框列表 img_2.pngimg_3.png

通过js实现组件联动

举例,当年龄填写大于30时,设置性别为男,其他情况为女

const fApi = $inject.api const formData = fApi.form; if(formData.age>30){ formData.gender = '男' }else{ formData.gender = '女' } img_4.png

举例,当手机号填写的长度小于10的时候,设置提交按钮不可见

const fApi = $inject.api const options = fApi.config; const formData = fApi.form;

if(formData.phone.length>10){ fApi.updateOptions({ submitBtn: true }) }else{ fApi.updateOptions({ submitBtn: false }) } img_5.png

远程查询

img_6.png

Upload File

1. Feature Overview

This feature enables file upload by configuring the upload component in the designer page, allowing files to be uploaded and accessed in the data interface.

2. Configuration Steps

2.1 Configure the Upload Component in the Designer Page
  1. Select Component Type: In the designer page, choose the upload component.
  2. Set Upload Type: Select the file type to be uploaded (e.g., text).
  3. Save the Configuration.
2.2 Test File Upload in the Data Page
  1. Go to the data page and open the add/edit interface.
  2. Click the Upload button to upload a file.
  3. Once the upload is successful, the uploaded file name will be displayed.
  4. Click the file name to access the stored file via its URL.

3. Important Notes

  • If the upload component’s data type is modified in the designer page, you must delete the old data in the * data* page before using the upload feature.
  • If you change an existing field type. If input is changed to upload, you need to check the length of the corresponding field in MySQL.

4. Reference

upload2.png

upload5.png

This documentation ensures proper configuration of the upload component in the designer page and successful file uploading and access in the data page.