Skip to content
Current Page Outline

Form Control Data Source

Form control data sources currently support multiple modes

在这里插入图片描述

Common Data Source

Currently, only one form of Value is supported for ordinary data. Platform is extending the common data source in the form of Key-Value in this way, there is no need to use interface engine, data source engine and SQL data source to implement Key-Value data binding

在这里插入图片描述

Data Source Engine

This is very simple, select the corresponding custom data source engine

SQL Data Source

  • Support to open the remote search function
  • Not enabled direct front-end local search in the data source
  • After opening, each search is queried from the database, so the corresponding $Keyword $variable and limit paging must be configured
  • SQL data sources support the use of [$CurrentUser in SQL. Field name $] related variables, such as [$CurrentUser. Id$, $CurrentUser. Account$】 etc.
  • Because sys_user tables are also driven by the form engine, any fields you add to sys_user table in the form design can be CurrentUser in [$. If you add a field [Wife], you can [$CurrentUser. Wife$】 Access

在这里插入图片描述

Dynamically bind data sources through other fields

  • for example, you first select the drop-down box control [department (Dept)] in the form, and then bind only the personnel data of the current department in the drop-down box control [contact (Contact)]
  • at this time, you only need to configure the data source of [contact] as empty
  • then enter the following V8 engine code in the [value change event] of the [department] control]
javascript
//获取选中部门中的人员数据
var deptId = V8.ThisValue.Id;//或者V8.Form.Dept.Id
if(deptId){//如果选择了部门
	var contactResult = await V8.FormEngine.GetTableData('sys_user', {
		_SelectFields:['Id', 'Name', 'Account'],//只查询哪些字段,提高性能
		_Wherer: [{ Name : 'DeptId', Value : deptId, Type : '=' }]
	});
	if(contactResult.Code != 1){
		V8.Tips('获取部门人员失败!', false);
	}else{
		V8.FieldSet('Contact', 'Data', contactResult.Data);
	}
}else{//如果清空了部门
	V8.FieldSet('Contact', 'Data', []);
}

About Display and Storage Fields After Binding a Data Source

  • Some students are talking about selecting a customer in the drop-down box. They only need to store the customer Id. There is no need to store the customer name, because the customer name may change.
  • in fact, the official recommend method of my code is to store the customer name after selecting a piece of data in the drop-down box. you need to drag another hidden field customer id and assign a value to the customer id in the drop-down box value change event.
  • the advantage is that the historical name is archived. for example, to add an order, we need to drop down and select the commodity. we need to store both the commodity name and the commodity id. otherwise, the user bought a pen and then changed the commodity name to a book. when the user checks the order, he will find that the commodity name in the order has become a book.
  • After the customer name is modified, the latest customer name needs to be displayed in other associated data. When the customer name is modified in the customer list, the associated data can be updated synchronously through form events.

MIT License.