search
HomeWeb Front-endHTML TutorialPage automatic generation tool design_html/css_WEB-ITnose

Page automatic generation tool design

1 Function overview

1.1 Terms used

Automatic page generation tool: a page generation tool for customizing query conditions and data display

1.2 Function description

The automatic page generation tool is based on the engineering staff A tool for defining query conditions and data display methods according to your needs. Data display can be in the form of tables and charts: query statistics display data in the form of tables, and trend pages display pages in the form of charts.

1.2.1 Query statistics page

The settings of the query statistics page are as shown below:

"Set data set": The complete SQL statement of the entire query statistics display data.
"Query Condition Settings": After writing the SQL statement, click the "Set Query Conditions" button to bring the parameters in the SQL statement into the condition settings. Among them, "display order" determines the order in which the condition is displayed in the generated page; "parameter name" corresponds to the parameter in sql; "parameter display name" determines the prompt name of the parameter on the query statistics page; "control type" can Determine the control (text box, time box, drop-down box) on the page for this parameter. The control type will be explained in Section 1.2.4.
"Display settings": Control which columns of data queried by SQL need to be displayed. "Whether to display" controls whether the column is displayed; "Column name" corresponds to the data column, and "Column display name" controls the column header displayed for the column.
"Save": Click the "Save" button to save the page information into the database for next time reading.
"Preview": Click "Preview" to check whether the above page settings are correct.
The final generated page effect is as follows:

Among them, if the start time is greater than, if the start time is less than, the time control is selected, and the circuit ID is the drop-down box control: SELECT numCircuitID,varCircuitName from WD_Circuit;

1.2.2 Trend page

The setting of the trend page is as shown below:

"Set data set": The complete SQL statement of the entire query statistics display data.
"Query Condition Settings": After writing the SQL statement, click the "Set Query Conditions" button to bring the parameters in the SQL statement into the condition settings. Among them, "display order" determines the order in which the condition is displayed in the generated page; "parameter name" corresponds to the parameter in sql; "parameter display name" determines the prompt name of the parameter on the query statistics page; "control type" can Determine the control (text box, time box, drop-down box) on the page for this parameter. The control type will be explained in Section 1.2.4.
"Display settings": Control which columns of data queried by SQL need to be displayed. "Whether to display" controls whether the column is displayed; "Display position" determines the column as the x-axis or y-axis (there can only be one x-axis), "Column name" corresponds to the data column, and "Column display name" refers to the column illustrate.
"Save": Click the "Save" button to save the page information into the database for next time reading.
"Preview": Click "Preview" to see whether the above page settings are correct.
The final generated page effect is as follows:

Among them, the start time is selected as the time control, and the table ID is selected as the drop-down box control: select numTableID,varIP from WD_Table; the column ID is selected as the drop-down box control Box control: SELECT numColID,varCName from WD_Column;

1.2.3 Add and delete search page

The design of the add and delete search page is as follows:

"Main database": the data table operated by the add and delete search
"Set query conditions": Click this button to query all fields of the data table you need to operate.
"Modify settings": "Display order" controls the display order of query conditions and queried data; "primary key" is the primary key of the table: used as a condition (where) when updating (update) and deleting (delete); "Whether to modify" controls whether the field is modified during update and insert; "query condition": indicates whether the parameter is used as a query condition; "parameter" is the field of the table corresponding to the field; "query parameter name" is the string that the parameter is used as a query parameter; "Parameter display name" is the interface prompt name of the parameter used as the query condition; "Control type" can determine the control on the page for this parameter (text box, time box, drop-down box), Control types will be described in Section 1.2.4.
"Save": Click the "Save" button to save the page information into the database for next time reading.
"Preview": Click "Preview" to see whether the above page settings are correct.
The final generated page effect is as follows:

1.2.4 Control type

Control type when controlling selection conditions: text box, drop-down box, time control.
Text box: Default control type
Drop-down box: Enter the sql statement to determine the display data in the drop-down box (SELECT numCircuitID,varCircuitName from WD_Circuit;): The first column is the value of the drop-down box, and the second column is The text of the drop-down box.
Time control: used for time selection

2 module design

2.1 Page automatic generation tool module division

The page automatic generation tool saves the design to the database, and can also read the design from the database Modification, other systems read the design in the database and automatically generate pages.

The design of the automatic page generation tool ultimately stores data in json format

2.2.1 Query statistics page

json is as follows:
{
"dataTable":"select numRefID,datStart d1,numCircuitID from WD_CircuitParents where datStart BETWEEN ':start:' and ':end:' and numCircuitID=':numCircuitID:'",
"pageType":"query ",
"condition": [
{ "order": "1", "name": ":start:", "showName": "Start time is greater than", "control": "DateTimePicker", "controlData": "" },
{ "order": "2", "name": ":end:", "showName": "Start time is less than", "control": "DateTimePicker", "controlData ": ""},
{ "order": "3", "name": ":numCircuitID:", "showName": "Circuit ID", "control": "dropdownlist", "controlData": " select numCircuitID,varCircuitName from WD_Circuit" }
],
"show": [
{ "isShow": "1", "name": "numRefID", "showName": "ID" },
{ "isShow": "1", "name": "d1", "showName": "Start Time"},
{ "isShow": "1", "name": "numCircuitID", "showName": "Loop ID"}
]}
dataTable: sql for displaying data on the page
pageType: page type (admin: management page, trend: trend page, query: query statistics page)
condition: query condition: "order" is the condition display order, "name" is the string in the sql statement corresponding to the condition, "showName" is the prompt name of the condition, "control" is the control with appropriate conditions, "controlData" Is the value set of the conditional control
show: table data display: "isShow" whether the column is displayed, "name" the column corresponds to the column name, "showName" the column header displayed in the column

2.2.2 The trend page

json is as follows:
{
"dataTable":"select datBuild,varValue,numColID,numTableID from WD_TableData WHERE datBuild BETWEEN ':start:' and ':end:' numTableID=:numTableID: and numColID=:numColID:;",
"pageType":"trend",
"condition": [
{ "order": "1", "name": ":start:", " showName": "Start Time", "control": "DateTimePicker", "controlData": "" },
{ "order": "2", "name": ":end:", "showName": "End Time", "control": "DateTimePicker", "controlData": ""},
{ "order": "3", "name": ":numTableID:", "showName": "Table ID ", "control": "dropdownlist", "controlData": "select numTableID,varIP from WD_Table" },
{ "order": "4", "name": ":numColID:", "showName": "Column ID", "control": "dropdownlist", "controlData": "select numColID,varCName from WD_Column" }
],
"show": [
{ "isShow": "x" , "name": "datBuild", "showName": "time" },
{ "isShow": "y", "name": "varValue", "showName": "value"},
{ "isShow": "", "name": "numColID", "showName": "Column ID"},
{ "isShow": "", "name": "numColID", "showName": " Table ID"}
]}
dataTable: sql for displaying data on the page
pageType: page type (admin: management page, trend: trend page, query: query statistics page)
condition: query condition : "order" is the condition display order, "name" is the string in the sql statement corresponding to the condition, "showName" is the prompt name of the condition, "control" is the control with appropriate conditions, "controlData" is the value of the condition control Collection
show: tabular data display: "isShow" displays data on the x-axis or y-axis, "name" corresponds to the column name, and "showName" displays the column header

2.2.3 Add and delete search page

The json is as follows:
{
"dataTable":"select * from WD_User",
"pageType":"admin",
"condition" : [
{"order": "1","key":"1","modify":"0","show":"0","name": "numUser", "showName": "User ID", "control": "text", "controlData": ""},
{"order": "2","key":"0","modify":"1"," show":"1","name": "varUserName", "showName": "username", "control": "text", "controlData": ""},
{"order": "3 ","key":"0","modify":"1","show":"1","name": "varLoginName", "showName": "Login Name", "control": "text" , "controlData": ""},
{"order": "4","key":"0","modify":"0","show":"0","name": " varPassword", "showName": "password", "control": "text", "controlData": ""},
{"order": "5","key":"0","modify" :"1","show":"1","name": "datCreate", "showName": "Creation Time", "control": "DateTimePicker", "controlData": ""},
{ "order": "6","key":"0","modify":"1","show":"1","name": "numOrganizeID", "showName": "organization", "control ": "dropdownlist", "controlData": "SELECT numOrganizeId,varOrganizeName from WD_Organize"},
{"order": "7","key":"0","modify":"1","show ":"1","name": "numPositionId", "showName": "Position", "control": "dropdownlist", "controlData": "SELECT numPositionId,varPositionName from WD_Position"}
]}
dataTable: sql for displaying data on the page
pageType: page type (admin: management page, trend: trend page, query: query statistics page)
condition: query condition: "order": control query conditions and query output The display order of the data, "key": whether it is used as the primary key, "modify": controls whether the field is modified during update and insert, "show": whether it is used as a query condition, "name": this parameter As a string of query parameters, "showName": the name of the interface prompt as a parameter of the query condition, "control": the control on the page that can determine the parameter (text box, time box, drop-down box), "controlData": default The sql for the addition and deletion search of the data
page is as follows:
INSERT into WD_User(varUserName,varLoginName,datCreate,numOrganizeID,numPositionID) VALUES(:varUserName:,:varLoginName:,:datCreate:,:numOrganizeID:,:numPositionID:)


UPDATE WD_User SET varUserName=:varUserName:,varLoginName=:varLoginName:,datCreate=:datCreate:,numOrganizeID:numOrganizeID:,numPositionID=:numPositionID: where numUserID=:numUserID:


DELETE from WD_User where numUserID=:numUserID:
3 Interface design 4 System performance design 5 System error handling


Statement
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
Difficulty in updating caching of official account web pages: How to avoid the old cache affecting the user experience after version update?Difficulty in updating caching of official account web pages: How to avoid the old cache affecting the user experience after version update?Mar 04, 2025 pm 12:32 PM

The official account web page update cache, this thing is simple and simple, and it is complicated enough to drink a pot of it. You worked hard to update the official account article, but the user still opened the old version. Who can bear the taste? In this article, let’s take a look at the twists and turns behind this and how to solve this problem gracefully. After reading it, you can easily deal with various caching problems, allowing your users to always experience the freshest content. Let’s talk about the basics first. To put it bluntly, in order to improve access speed, the browser or server stores some static resources (such as pictures, CSS, JS) or page content. Next time you access it, you can directly retrieve it from the cache without having to download it again, and it is naturally fast. But this thing is also a double-edged sword. The new version is online,

How to efficiently add stroke effects to PNG images on web pages?How to efficiently add stroke effects to PNG images on web pages?Mar 04, 2025 pm 02:39 PM

This article demonstrates efficient PNG border addition to webpages using CSS. It argues that CSS offers superior performance compared to JavaScript or libraries, detailing how to adjust border width, style, and color for subtle or prominent effect

How do I use HTML5 form validation attributes to validate user input?How do I use HTML5 form validation attributes to validate user input?Mar 17, 2025 pm 12:27 PM

The article discusses using HTML5 form validation attributes like required, pattern, min, max, and length limits to validate user input directly in the browser.

What is the purpose of the <datalist> element?What is the purpose of the <datalist> element?Mar 21, 2025 pm 12:33 PM

The article discusses the HTML <datalist> element, which enhances forms by providing autocomplete suggestions, improving user experience and reducing errors.Character count: 159

What is the purpose of the <progress> element?What is the purpose of the <progress> element?Mar 21, 2025 pm 12:34 PM

The article discusses the HTML <progress> element, its purpose, styling, and differences from the <meter> element. The main focus is on using <progress> for task completion and <meter> for stati

What are the best practices for cross-browser compatibility in HTML5?What are the best practices for cross-browser compatibility in HTML5?Mar 17, 2025 pm 12:20 PM

Article discusses best practices for ensuring HTML5 cross-browser compatibility, focusing on feature detection, progressive enhancement, and testing methods.

What is the purpose of the <meter> element?What is the purpose of the <meter> element?Mar 21, 2025 pm 12:35 PM

The article discusses the HTML <meter> element, used for displaying scalar or fractional values within a range, and its common applications in web development. It differentiates <meter> from <progress> and ex

What is the purpose of the <iframe> tag? What are the security considerations when using it?What is the purpose of the <iframe> tag? What are the security considerations when using it?Mar 20, 2025 pm 06:05 PM

The article discusses the <iframe> tag's purpose in embedding external content into webpages, its common uses, security risks, and alternatives like object tags and APIs.

See all articles

Hot AI Tools

Undresser.AI Undress

Undresser.AI Undress

AI-powered app for creating realistic nude photos

AI Clothes Remover

AI Clothes Remover

Online AI tool for removing clothes from photos.

Undress AI Tool

Undress AI Tool

Undress images for free

Clothoff.io

Clothoff.io

AI clothes remover

AI Hentai Generator

AI Hentai Generator

Generate AI Hentai for free.

Hot Article

Repo: How To Revive Teammates
1 months agoBy尊渡假赌尊渡假赌尊渡假赌
R.E.P.O. Energy Crystals Explained and What They Do (Yellow Crystal)
2 weeks agoBy尊渡假赌尊渡假赌尊渡假赌
Hello Kitty Island Adventure: How To Get Giant Seeds
1 months agoBy尊渡假赌尊渡假赌尊渡假赌

Hot Tools

Dreamweaver Mac version

Dreamweaver Mac version

Visual web development tools

MinGW - Minimalist GNU for Windows

MinGW - Minimalist GNU for Windows

This project is in the process of being migrated to osdn.net/projects/mingw, you can continue to follow us there. MinGW: A native Windows port of the GNU Compiler Collection (GCC), freely distributable import libraries and header files for building native Windows applications; includes extensions to the MSVC runtime to support C99 functionality. All MinGW software can run on 64-bit Windows platforms.

MantisBT

MantisBT

Mantis is an easy-to-deploy web-based defect tracking tool designed to aid in product defect tracking. It requires PHP, MySQL and a web server. Check out our demo and hosting services.

Atom editor mac version download

Atom editor mac version download

The most popular open source editor

Notepad++7.3.1

Notepad++7.3.1

Easy-to-use and free code editor