CN114489886A - Resource page generation method, device, equipment and medium - Google Patents

Resource page generation method, device, equipment and medium Download PDF

Info

Publication number
CN114489886A
CN114489886A CN202111629718.3A CN202111629718A CN114489886A CN 114489886 A CN114489886 A CN 114489886A CN 202111629718 A CN202111629718 A CN 202111629718A CN 114489886 A CN114489886 A CN 114489886A
Authority
CN
China
Prior art keywords
resource
page
resource page
data
generating
Prior art date
Legal status (The legal status is an assumption and is not a legal conclusion. Google has not performed a legal analysis and makes no representation as to the accuracy of the status listed.)
Pending
Application number
CN202111629718.3A
Other languages
Chinese (zh)
Inventor
尤程鹏
范渊
刘博�
Current Assignee (The listed assignees may be inaccurate. Google has not performed a legal analysis and makes no representation or warranty as to the accuracy of the list.)
DBAPPSecurity Co Ltd
Original Assignee
DBAPPSecurity Co Ltd
Priority date (The priority date is an assumption and is not a legal conclusion. Google has not performed a legal analysis and makes no representation as to the accuracy of the date listed.)
Filing date
Publication date
Application filed by DBAPPSecurity Co Ltd filed Critical DBAPPSecurity Co Ltd
Priority to CN202111629718.3A priority Critical patent/CN114489886A/en
Publication of CN114489886A publication Critical patent/CN114489886A/en
Pending legal-status Critical Current

Links

Images

Classifications

    • GPHYSICS
    • G06COMPUTING; CALCULATING OR COUNTING
    • G06FELECTRIC DIGITAL DATA PROCESSING
    • G06F9/00Arrangements for program control, e.g. control units
    • G06F9/06Arrangements for program control, e.g. control units using stored programs, i.e. using an internal store of processing equipment to receive or retain programs
    • G06F9/44Arrangements for executing specific programs
    • G06F9/451Execution arrangements for user interfaces
    • GPHYSICS
    • G06COMPUTING; CALCULATING OR COUNTING
    • G06FELECTRIC DIGITAL DATA PROCESSING
    • G06F16/00Information retrieval; Database structures therefor; File system structures therefor
    • G06F16/20Information retrieval; Database structures therefor; File system structures therefor of structured data, e.g. relational data
    • G06F16/22Indexing; Data structures therefor; Storage structures
    • GPHYSICS
    • G06COMPUTING; CALCULATING OR COUNTING
    • G06FELECTRIC DIGITAL DATA PROCESSING
    • G06F16/00Information retrieval; Database structures therefor; File system structures therefor
    • G06F16/20Information retrieval; Database structures therefor; File system structures therefor of structured data, e.g. relational data
    • G06F16/24Querying
    • G06F16/245Query processing
    • GPHYSICS
    • G06COMPUTING; CALCULATING OR COUNTING
    • G06FELECTRIC DIGITAL DATA PROCESSING
    • G06F16/00Information retrieval; Database structures therefor; File system structures therefor
    • G06F16/20Information retrieval; Database structures therefor; File system structures therefor of structured data, e.g. relational data
    • G06F16/24Querying
    • G06F16/248Presentation of query results
    • GPHYSICS
    • G06COMPUTING; CALCULATING OR COUNTING
    • G06FELECTRIC DIGITAL DATA PROCESSING
    • G06F8/00Arrangements for software engineering
    • G06F8/30Creation or generation of source code
    • G06F8/38Creation or generation of source code for implementing user interfaces

Landscapes

  • Engineering & Computer Science (AREA)
  • Theoretical Computer Science (AREA)
  • General Engineering & Computer Science (AREA)
  • Software Systems (AREA)
  • Physics & Mathematics (AREA)
  • General Physics & Mathematics (AREA)
  • Data Mining & Analysis (AREA)
  • Databases & Information Systems (AREA)
  • Computational Linguistics (AREA)
  • Human Computer Interaction (AREA)
  • Information Retrieval, Db Structures And Fs Structures Therefor (AREA)

Abstract

The invention discloses a method, a device, equipment and a medium for generating a resource page; in the scheme, the resource description data and the query condition data of each resource page can be generated into corresponding resource items to be stored in the database; therefore, no matter which scene needs to generate the target resource page, the resource items corresponding to the target resource page can be obtained from the database and analyzed, and then the generated target resource page is displayed on the front-end page.

Description

Resource page generation method, device, equipment and medium
Technical Field
The present invention relates to the field of page generation technologies, and in particular, to a method, an apparatus, a device, and a medium for generating a resource page.
Background
In the process of project development, the requirement of performing style unification processing on each resource page is often met, and new pages developed subsequently follow the style of the page. The page style comprises an overall page style, a filtering mode, a list display mode, an operation button position style and arrangement and the like. In the current process of developing resource pages with uniform styles, the development efficiency is too low, a back-end service layer cannot be reused, a front-end page needs to be repeatedly written, and the problem of too many redundant codes exists.
Therefore, how to quickly implement a uniform-style resource page is a problem that needs to be solved by those skilled in the art.
Disclosure of Invention
The invention aims to provide a method, a device, equipment and a medium for generating a resource page, so as to quickly realize a uniform-style resource page.
In order to achieve the above object, the present invention provides a method for generating a resource page, including:
acquiring resource description data and query condition data corresponding to each resource page;
generating corresponding resource items according to the resource description data and the query condition data of each resource page, and storing the resource items of each resource page to a database;
when a target resource page is generated, acquiring and analyzing resource items corresponding to the target resource page from the database, and displaying the generated target resource page on a front-end page.
Wherein, the acquiring the resource description data and the query condition data corresponding to each resource page comprises:
acquiring resource description data corresponding to each resource page, wherein the resource description data comprises: at least one of resource name, resource number, resource dynamic query SQL, resource count SQL, data source and route of adding, deleting and modifying interface;
acquiring query condition data corresponding to each resource page, wherein the query condition data comprises: at least one of a field name, a Chinese name, a data type, a selection type, a data source.
Generating corresponding resource items according to the resource description data and the query condition data of each resource page includes:
storing the resource description data corresponding to each resource page into a resource data table, and storing the query condition data corresponding to each resource page into a conditionList data table;
and generating a resource item corresponding to each resource page by using the resource data table and the conditionList data table of each resource page.
The acquiring and analyzing the resource item corresponding to the target resource page from the database includes:
acquiring a resource item corresponding to the target resource page from the database;
and analyzing the resource item corresponding to the target resource page through the SqlMapper to obtain an analysis result.
After obtaining the analysis result, the method further includes:
judging whether the analysis result needs to be processed by special service;
if not, directly displaying the analysis result on the front-end page to generate a target resource page;
if so, after special service processing is carried out on the analysis result, the processing result is displayed on a front-end page, and a target resource page is generated.
Wherein, the displaying the generated target resource page on the front end page comprises:
displaying a target resource page on a front-end page through a mybatis frame;
and receiving a query instruction triggered by the user on the target resource page, and displaying a corresponding query result.
When a target resource page is generated, acquiring and analyzing a resource item corresponding to the target resource page from the database, including:
when a target resource page is generated, determining a resource number of the target resource page;
and acquiring the resource item corresponding to the resource number from the database and analyzing the resource item.
In order to achieve the above object, the present invention further provides a device for generating a resource page, including:
the acquisition module is used for acquiring resource description data and query condition data corresponding to each resource page;
the generating module is used for generating corresponding resource items according to the resource description data and the query condition data of each resource page;
the storage module is used for storing the resource items of each resource page to a database;
the analysis module is used for acquiring resource items corresponding to the target resource page from the database and analyzing the resource items when the target resource page is generated;
and the display module is used for displaying the generated target resource page on the front-end page.
To achieve the above object, the present invention further provides an electronic device comprising:
a memory for storing a computer program;
and the processor is used for realizing the steps of the resource page generation method when the computer program is executed.
To achieve the above object, the present invention further provides a computer-readable storage medium, on which a computer program is stored, and the computer program, when executed by a processor, implements the steps of the method for generating a resource page.
According to the scheme, the embodiment of the invention provides a resource page generation method, a resource page generation device and a resource page generation medium; in the scheme, the resource description data and the query condition data of each resource page can be generated into corresponding resource items to be stored in the database; therefore, no matter which scene needs to generate the target resource page, the resource items corresponding to the target resource page can be obtained from the database and analyzed, and then the generated target resource page is displayed on the front-end page.
Drawings
In order to more clearly illustrate the embodiments of the present invention or the technical solutions in the prior art, the drawings used in the description of the embodiments or the prior art will be briefly described below, it is obvious that the drawings in the following description are only some embodiments of the present invention, and for those skilled in the art, other drawings can be obtained according to the drawings without creative efforts.
Fig. 1 is a schematic flow chart of a method for generating a resource page according to an embodiment of the present invention;
fig. 2 is a schematic structural diagram of a device for generating a resource page according to an embodiment of the present invention;
fig. 3 is a schematic structural diagram of an electronic device according to an embodiment of the present invention.
Detailed Description
The technical solutions in the embodiments of the present invention will be clearly and completely described below with reference to the drawings in the embodiments of the present invention, and it is obvious that the described embodiments are only a part of the embodiments of the present invention, and not all of the embodiments. All other embodiments, which can be derived by a person skilled in the art from the embodiments given herein without making any creative effort, shall fall within the protection scope of the present invention.
The embodiment of the invention discloses a method, a device, equipment and a medium for generating a resource page, which are used for quickly realizing a uniform-style resource page.
Referring to fig. 1, a schematic flow chart of a method for generating a resource page provided in an embodiment of the present invention specifically includes:
s101, acquiring resource description data and query condition data corresponding to each resource page;
it should be noted that, in the present embodiment, various lists in the software system are all referred to as resource pages, such as a staff list, a student list, an equipment list, and so on. In a resource page, a plurality of resources are included, taking a list resource as an example, the resource page mainly comprises a paging list, various search conditions are arranged on the list, each search condition is different, some search conditions are input boxes, some search conditions are pull-down lists, and some search conditions are a tree-shaped list for single selection or multiple selection. The columns of each list are different, such as the columns of the person list are the name, age, and birthday of the person, etc., and the watch list has the columns of the watch person, the watch log, etc. Therefore, the scheme abstracts the key elements into data and generates resource description data and query condition data. The resource description data is a set of data for describing a resource page, and the query condition data is a set of data for defining a query condition.
Therefore, in the present scheme, before generating the resource page, the resource description data corresponding to each resource page needs to be acquired, where the resource description data includes: at least one of resource name, resource number, resource dynamic query SQL, resource count SQL, data source and route of adding, deleting and modifying interface; then, acquiring query condition data corresponding to each resource page, wherein the query condition data comprises: at least one of a field name, a Chinese name, a data type, a selection type, a data source. Of course, the order of acquiring the resource description data and the query condition data is not particularly limited herein.
Specifically, the resource name in the resource description data is specifically: the name of the resource page, such as: personnel lists, student lists, equipment lists, and the like; the resource number represents the number of the unique identifier of the resource page; the SQL index data is inquired about the source dynamically; the resource countSQL is used to count the data in the resource page, such as: how many columns, how many rows, etc. there are in total; data source means that the data source is the company, or other companies, etc.; the route of the adding and deleting interface represents the route address of the operation of modification, deletion and the like. The field names in the query condition data are column names; the Chinese name is a Chinese name in the resource page, and if the name is used in the system to represent the name, the Chinese name corresponding to the name is: chinese names such as Zhang III and Li IV; the data types include: types of numbers, character strings, etc.; the selection type is a type selectable by a user; the data source is the type of the data source when the query is made, and includes static or dynamic SQL, static means that the query result is fixed, such as: the gender query result is only male or female, and the dynamic state means that the query result is not fixed, such as: the number of the part of the department where the inquirer is located can be known only after the corresponding data is actually inquired, so that the inquiry result is not fixed.
S102, generating corresponding resource items according to the resource description data and the query condition data of each resource page, and storing the resource items of each resource page to a database;
it should be noted that, when generating the corresponding resource item, the present solution first needs to store the resource description data corresponding to each resource page into the resource data table, and store the query condition data corresponding to each resource page into the conditionList data table; and then, generating a resource item corresponding to each resource page by using the resource data table and the conditionList data table of each resource page.
Specifically, according to the scheme, the resource description data and the query condition data of each resource page are stored in the corresponding data tables, so that the resource items corresponding to each resource page are generated, and the resource items of the corresponding resource pages can be acquired at any place at any time by the project to analyze and generate the resource pages with uniform styles.
S103, when a target resource page is generated, acquiring and analyzing resource items corresponding to the target resource page from the database, and displaying the generated target resource page on a front-end page.
When the target resource page is generated, the resource number of the target resource page needs to be determined; and then acquiring the resource item corresponding to the resource number from the database and analyzing the resource item.
It should be noted that, the present solution can uniquely correspond to each resource item in the database using the corresponding resource number, the resource items of different resource pages in the database become resource items that can be used at any time, and when in use, the corresponding resource items can be directly searched from the database through the resource numbers and analyzed. The resource items in the database may include resource items corresponding to the staff list, resource items corresponding to the total number of staff, resource items corresponding to the total number of alarms, resource items corresponding to the aggregated information, and so on. If a new resource page is required, only a group of data defining resources is manually added to the database in the frame and a data item is generated, the front end directly transmits a unique resource number to acquire the data corresponding to the resource page and analyzes and generates the corresponding resource page, so that the development of a service layer is required, and only the development of a data layer is required to be concerned.
In this embodiment, when acquiring and analyzing a resource item corresponding to a target resource page from a database, first, a resource item corresponding to the target resource page needs to be acquired from the database; and then analyzing the resource item corresponding to the target resource page through the SqlMapper to obtain an analysis result. In particular, among the various items of information in the resource items, the most complex and the most critical is the dynamic query SQL of the resource, and each resource item can be abstracted into one dynamic SQL in fact. Dynamic SQL can be very complex if the business is complex or the table structure is complex. There is a significant amount of effort if one were to resolve SQL by itself. Therefore, in the present embodiment, the SqlMapper resolution is mainly used. SqlMapper is a tool for MyBatis to directly execute SQL. The SqlMapper can directly transmit the dynamic SQL to the MyBatis framework for query after analysis, and then output the query result. In the present embodiment, MyBatis (persistent layer framework) is specifically used as the persistent layer framework of the present system. Therefore, when the target resource page is displayed and generated on the front-end page, specifically, the target resource page is displayed on the front-end page through the MyBatis frame, the user can trigger the query instruction on the target resource page, and the system can display the corresponding query result after receiving the query instruction triggered by the user on the target resource page.
Further, after the analysis result is obtained, whether the analysis result needs to be subjected to special service processing is also required to be judged; if not, directly displaying the analysis result on the front-end page to generate a target resource page; if so, after special service processing is carried out on the analysis result, the processing result is displayed on the front-end page, and a target resource page is generated. Specifically, if the dynamic SQL cannot achieve the final effect, that is: when the analysis result needs to be processed by a special service, the analysis result can be processed by a special service processing layer after being obtained, the analysis result is slightly processed and then is displayed to a user after a page is rendered at the front end, and if the user needs to be processed by the special service processing layer after inquiring in the displayed page, the analysis result is continuously returned to the special service processing layer for processing and then is displayed at the front end. The special service processing operation executed by the present solution may include various forms, for example: some data cannot be directly acquired from a database, and only some data need to be acquired from an application, so that the data cannot be directly acquired from an analysis result, and after the analysis result is obtained, a special service processing layer is required to call interfaces of other applications to acquire the data, and then the data are displayed through a front end; or when the resource page is too complex, the complex operation can be executed through a special service processing layer, and the final result is obtained and then displayed.
In conclusion, the scheme provides a method for quickly generating resource pages with uniform styles based on SqlMapper in order to enable development to be more agile and easier to reuse. In the scheme, the service layer code which can be shared in a plurality of resource pages is abstracted, so that each page is prevented from independently writing the service layer, and developers can concentrate on the development of the data layer. And the list query in the resource page is realized by a dynamic SQL script, and the query SQL script is executed by using SqlMapper in a unified service layer. By the method, after the related information of the resource page is configured in the database to generate the resource item, a brand-new resource page with uniform style can be generated by analyzing the resource item, and the development efficiency of page stylization transformation or uniform style pages can be greatly improved. In addition, the resource page developed by the scheme can be stored as an independent resource item, and any scene can be used at any time no matter where the item is, so that the resource is convenient to sum up and reuse is convenient.
The following describes a generating apparatus, a device, and a medium according to an embodiment of the present invention, and the generating apparatus, the device, and the medium described below and the generating method described above may be referred to each other.
Referring to fig. 2, a schematic structural diagram of a device for generating a resource page provided in an embodiment of the present invention includes:
an obtaining module 11, configured to obtain resource description data and query condition data corresponding to each resource page;
a generating module 12, configured to generate a corresponding resource item according to the resource description data and the query condition data of each resource page;
a storage module 13, configured to store the resource item of each resource page in a database;
the analysis module 14 is configured to, when a target resource page is generated, obtain a resource item corresponding to the target resource page from the database and analyze the resource item;
and the display module 15 is configured to display the generated target resource page on the front-end page.
Wherein the acquisition module comprises:
a first obtaining unit, configured to obtain resource description data corresponding to each resource page, where the resource description data includes: at least one of resource name, resource number, resource dynamic query SQL, resource count SQL, data source and route of adding, deleting and modifying interface;
a second obtaining unit, configured to obtain query condition data corresponding to each resource page, where the query condition data includes: at least one of a field name, a Chinese name, a data type, a selection type, a data source.
Wherein the generating module comprises:
a storage unit, configured to store the resource description data corresponding to each resource page in a resource data table, and store the query condition data corresponding to each resource page in a conditionList data table;
and the generating unit is used for generating the resource item corresponding to each resource page by using the resource data table and the conditionList data table of each resource page.
Wherein, analysis module includes:
a third obtaining unit, configured to obtain a resource item corresponding to the target resource page from the database;
and the analysis unit is used for analyzing the resource item corresponding to the target resource page through the SqlMapper to obtain an analysis result.
Wherein the generating means further comprises:
the judging module is used for judging whether the analysis result needs to be subjected to special service processing; if not, directly displaying the analysis result on the front-end page through the display module to generate a target resource page; if yes, triggering a processing module;
and the processing module is used for displaying the processing result on a front-end page after the special service processing is carried out on the analysis result, and generating a target resource page.
Wherein, the display module is specifically configured to: displaying a target resource page on a front-end page through a mybatis frame; and receiving a query instruction triggered by the user on the target resource page, and displaying a corresponding query result.
Wherein, the analysis module is specifically configured to: when a target resource page is generated, the resource number of the target resource page is determined, and the resource item corresponding to the resource number is obtained from the database and analyzed.
Referring to fig. 3, an electronic device according to an embodiment of the present invention includes:
a memory for storing a computer program;
and the processor is used for realizing the steps of the resource page generation method in the embodiment of the method when the computer program is executed.
In this embodiment, the device may be a PC (Personal Computer), or may be a terminal device such as a smart phone, a tablet Computer, a palmtop Computer, or a portable Computer.
The device may include a memory 21, a processor 22, and a bus 23.
The memory 21 includes at least one type of readable storage medium, which includes a flash memory, a hard disk, a multimedia card, a card type memory (e.g., SD or DX memory, etc.), a magnetic memory, a magnetic disk, an optical disk, and the like. The memory 21 may in some embodiments be an internal storage unit of the device, for example a hard disk of the device. The memory 21 may also be an external storage device of the device in other embodiments, such as a plug-in hard disk, Smart Media Card (SMC), Secure Digital (SD) Card, Flash memory Card (Flash Card), etc. provided on the device. Further, the memory 21 may also include both an internal storage unit of the device and an external storage device. The memory 21 may be used not only to store application software installed in the device and various types of data such as program codes for executing the generation method, but also to temporarily store data that has been output or is to be output.
The processor 22 may be, in some embodiments, a Central Processing Unit (CPU), controller, microcontroller, microprocessor or other data Processing chip for executing program codes stored in the memory 21 or Processing data, such as program codes for executing the generation method.
The bus 23 may be a Peripheral Component Interconnect (PCI) bus, an Extended Industry Standard Architecture (EISA) bus, or the like. The bus may be divided into an address bus, a data bus, a control bus, etc. For ease of illustration, only one thick line is shown in FIG. 3, but this does not mean only one bus or one type of bus.
Further, the device may further include a network interface 24, and the network interface 24 may optionally include a wired interface and/or a wireless interface (e.g., WI-FI interface, bluetooth interface, etc.), which are generally used to establish a communication connection between the device and other electronic devices.
Optionally, the device may further comprise a user interface 25, the user interface 25 may comprise a Display (Display), an input unit such as a Keyboard (Keyboard), and the optional user interface 25 may also comprise a standard wired interface, a wireless interface. Alternatively, in some embodiments, the display may be an LED display, a liquid crystal display, a touch-sensitive liquid crystal display, an OLED (Organic Light-Emitting Diode) touch device, or the like. The display, which may also be referred to as a display screen or display unit, is suitable for displaying information processed in the device and for displaying a visualized user interface.
Fig. 3 shows only the device with the components 21-25, and it will be understood by those skilled in the art that the structure shown in fig. 3 does not constitute a limitation of the device, and may comprise fewer or more components than those shown, or some components may be combined, or a different arrangement of components.
The embodiment of the present invention further provides a computer-readable storage medium, where a computer program is stored on the computer-readable storage medium, and when the computer program is executed by a processor, the steps of the method for generating a resource page according to the above-mentioned method embodiment are implemented.
Wherein the storage medium may include: various media capable of storing program codes, such as a usb disk, a removable hard disk, a Read-Only Memory (ROM), a Random Access Memory (RAM), a magnetic disk, or an optical disk.
The embodiments in the present description are described in a progressive manner, each embodiment focuses on differences from other embodiments, and the same and similar parts among the embodiments are referred to each other.
The previous description of the disclosed embodiments is provided to enable any person skilled in the art to make or use the present invention. Various modifications to these embodiments will be readily apparent to those skilled in the art, and the generic principles defined herein may be applied to other embodiments without departing from the spirit or scope of the invention. Thus, the present invention is not intended to be limited to the embodiments shown herein but is to be accorded the widest scope consistent with the principles and novel features disclosed herein.

Claims (10)

1. A method for generating a resource page is characterized by comprising the following steps:
acquiring resource description data and query condition data corresponding to each resource page;
generating corresponding resource items according to the resource description data and the query condition data of each resource page, and storing the resource items of each resource page to a database;
when a target resource page is generated, acquiring and analyzing resource items corresponding to the target resource page from the database, and displaying the generated target resource page on a front-end page.
2. The generation method according to claim 1, wherein the acquiring the resource description data and the query condition data corresponding to each resource page comprises:
acquiring resource description data corresponding to each resource page, wherein the resource description data comprises: at least one of resource name, resource number, resource dynamic query SQL, resource count SQL, data source and route of adding, deleting and modifying interface;
acquiring query condition data corresponding to each resource page, wherein the query condition data comprises: at least one of a field name, a Chinese name, a data type, a selection type, a data source.
3. The method according to claim 2, wherein the generating the corresponding resource item according to the resource description data and the query condition data of each resource page includes:
storing the resource description data corresponding to each resource page into a resource data table, and storing the query condition data corresponding to each resource page into a conditionList data table;
and generating a resource item corresponding to each resource page by using the resource data table and the conditionList data table of each resource page.
4. The method according to claim 1, wherein the obtaining and parsing the resource item corresponding to the target resource page from the database includes:
acquiring a resource item corresponding to the target resource page from the database;
and analyzing the resource item corresponding to the target resource page through the SqlMapper to obtain an analysis result.
5. The method of generating as claimed in claim 4, wherein after obtaining the analysis result, further comprising:
judging whether the analysis result needs to be processed by special service;
if not, directly displaying the analysis result on the front-end page to generate a target resource page;
if so, after special service processing is carried out on the analysis result, the processing result is displayed on a front-end page, and a target resource page is generated.
6. The method of generating as claimed in claim 1, wherein said presenting the generated target resource page on the front end page comprises:
displaying a target resource page on a front-end page through a mybatis frame;
and receiving a query instruction triggered by the user on the target resource page, and displaying a corresponding query result.
7. The method according to any one of claims 1 to 6, wherein when generating a target resource page, acquiring and parsing a resource item corresponding to the target resource page from the database includes:
when a target resource page is generated, determining a resource number of the target resource page;
and acquiring the resource item corresponding to the resource number from the database and analyzing the resource item.
8. An apparatus for generating a resource page, comprising:
the acquisition module is used for acquiring resource description data and query condition data corresponding to each resource page;
the generating module is used for generating corresponding resource items according to the resource description data and the query condition data of each resource page;
the storage module is used for storing the resource items of each resource page to a database;
the analysis module is used for acquiring resource items corresponding to the target resource page from the database and analyzing the resource items when the target resource page is generated;
and the display module is used for displaying the generated target resource page on the front-end page.
9. An electronic device, comprising:
a memory for storing a computer program;
a processor for implementing the steps of the method of generating a resource page according to any one of claims 1 to 7 when executing said computer program.
10. A computer-readable storage medium, characterized in that a computer program is stored on the computer-readable storage medium, which computer program, when being executed by a processor, carries out the steps of the method for generating a resource page according to any one of claims 1 to 7.
CN202111629718.3A 2021-12-28 2021-12-28 Resource page generation method, device, equipment and medium Pending CN114489886A (en)

Priority Applications (1)

Application Number Priority Date Filing Date Title
CN202111629718.3A CN114489886A (en) 2021-12-28 2021-12-28 Resource page generation method, device, equipment and medium

Applications Claiming Priority (1)

Application Number Priority Date Filing Date Title
CN202111629718.3A CN114489886A (en) 2021-12-28 2021-12-28 Resource page generation method, device, equipment and medium

Publications (1)

Publication Number Publication Date
CN114489886A true CN114489886A (en) 2022-05-13

Family

ID=81495891

Family Applications (1)

Application Number Title Priority Date Filing Date
CN202111629718.3A Pending CN114489886A (en) 2021-12-28 2021-12-28 Resource page generation method, device, equipment and medium

Country Status (1)

Country Link
CN (1) CN114489886A (en)

Citations (2)

* Cited by examiner, † Cited by third party
Publication number Priority date Publication date Assignee Title
CN112000692A (en) * 2020-09-02 2020-11-27 平安养老保险股份有限公司 Page query feedback method and device, computer equipment and readable storage medium
CN112732742A (en) * 2021-01-12 2021-04-30 平安医疗健康管理股份有限公司 Query page creating method and device, computer equipment and storage medium

Patent Citations (2)

* Cited by examiner, † Cited by third party
Publication number Priority date Publication date Assignee Title
CN112000692A (en) * 2020-09-02 2020-11-27 平安养老保险股份有限公司 Page query feedback method and device, computer equipment and readable storage medium
CN112732742A (en) * 2021-01-12 2021-04-30 平安医疗健康管理股份有限公司 Query page creating method and device, computer equipment and storage medium

Similar Documents

Publication Publication Date Title
CN113342821B (en) Report configuration method, device, equipment and computer storage medium
CN115061721A (en) Report generation method and device, computer equipment and storage medium
US11232134B2 (en) Customized visualization based intelligence augmentation
CN113268500B (en) Service processing method and device and electronic equipment
US8260772B2 (en) Apparatus and method for displaying documents relevant to the content of a website
CN114637866B (en) Information management method and device for digitalized new media
CN113886204A (en) User behavior data collection method and device, electronic equipment and readable storage medium
CN110489032B (en) Dictionary query method for electronic book and electronic equipment
CN113687827B (en) Data list generation method, device and equipment based on widget and storage medium
CN111190965A (en) Text data-based ad hoc relationship analysis system and method
CN115905371A (en) Data trend analysis method, device and equipment and computer readable storage medium
CN114489886A (en) Resource page generation method, device, equipment and medium
CN111553133B (en) Report generation method and device, electronic equipment and storage medium
CN115033592A (en) SQL statement processing method, device, equipment and storage medium based on database
CN115062023A (en) Wide table optimization method and device, electronic equipment and computer readable storage medium
CN114996758A (en) Data desensitization method and device and electronic equipment
CN113779362A (en) Data searching method and device
CN114371848A (en) Page joint debugging method, device, equipment and storage medium
CN114895997A (en) Task association method and device and electronic equipment
CN114547066A (en) Nuclear power business data standardization method and device and computer equipment
CN112948328A (en) Retrieval method, device, equipment and medium of log data
CN113032515A (en) Method, system, device and storage medium for generating chart based on multiple data sources
CN113256253A (en) Data processing method, device, equipment, computer readable storage medium and product
CN113064928A (en) Report data query method and device, electronic equipment and storage medium
CN112765517A (en) Page generation method and device and electronic equipment

Legal Events

Date Code Title Description
PB01 Publication
PB01 Publication
SE01 Entry into force of request for substantive examination
SE01 Entry into force of request for substantive examination