CN117194538A - Configuration and calling method, device and equipment of data service interface and storage medium - Google Patents

Configuration and calling method, device and equipment of data service interface and storage medium Download PDF

Info

Publication number
CN117194538A
CN117194538A CN202311034207.6A CN202311034207A CN117194538A CN 117194538 A CN117194538 A CN 117194538A CN 202311034207 A CN202311034207 A CN 202311034207A CN 117194538 A CN117194538 A CN 117194538A
Authority
CN
China
Prior art keywords
interface
database
sql
call
configuration
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
CN202311034207.6A
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.)
China Power Industry Internet Co ltd
Original Assignee
China Power Industry Internet 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 China Power Industry Internet Co ltd filed Critical China Power Industry Internet Co ltd
Priority to CN202311034207.6A priority Critical patent/CN117194538A/en
Publication of CN117194538A publication Critical patent/CN117194538A/en
Pending legal-status Critical Current

Links

Abstract

The application relates to a configuration and calling method, a device, equipment and a storage medium of a data service interface, which are characterized in that the configuration of interfaces is carried out on a visual interface configuration interface, SQL written user demand files are adopted, after the configuration of the interfaces is completed after the verification is passed, after an interface calling request is obtained, an interceptor is used for judging whether the interfaces in the interface calling request are already configured, if the interfaces are already configured, the corresponding user demand files are extracted according to interface identifiers configured by the interfaces, an SQL analyzer is adopted for analyzing the user demand files, corresponding operation instructions are generated according to the user demands obtained after the analysis, and finally, after the corresponding data in a database are processed according to the operation instructions, calling results are returned. In the method, SQL is adopted to edit the user demands to replace the conventional code writing, so that the time and labor cost are effectively saved.

Description

Configuration and calling method, device and equipment of data service interface and storage medium
Technical Field
The present application relates to the field of computer technologies, and in particular, to a method, an apparatus, a device, and a storage medium for configuring and invoking a data service interface.
Background
In the software system development process, API service interface development is one of the most common development works. The data interaction between the front end and the back end and the data transmission between each micro service module are all required to depend on the communication and the data interaction between the API interfaces. Therefore, the development efficiency of the API data interface may greatly affect the development and delivery efficiency of the software system.
Meanwhile, the traditional data service development generally needs to be performed by using a programming language, so that more time and labor cost are required to be consumed, and meanwhile, the development difficulty is also higher, and the problems of code confusion, difficult maintenance and the like are easy to occur.
Disclosure of Invention
In view of the foregoing, it is desirable to provide a method, an apparatus, a device, and a storage medium for configuring and invoking a data service interface capable of configuring a data service interface with zero code.
A method of configuration and invocation of a data service interface, the method comprising:
obtaining interface configuration information through a visual interface configuration interface, wherein the interface configuration information comprises: user demand files, interface identifications, interface parameters, interface addresses, call databases, call protocols, call modes and return result modes written based on SQL;
after the interface configuration information is audited, configuring an interface according to the interface configuration information;
acquiring an interface call request, and judging whether an interface in the interface call request is configured or not through an interceptor;
if the interface is configured, extracting a corresponding user demand file according to an interface identifier configured by the interface, analyzing the user demand file by adopting an SQL analyzer, and generating a corresponding operation instruction according to the user demand obtained after analysis;
and processing corresponding data in the database according to the operation instruction, and returning a calling result.
In one embodiment, after the corresponding data in the database is processed according to the operation instruction, a call result is returned:
on the visual interface configuration interface of the same interface, writing other user demands based on SQL so as to realize data return of multiple dimensions through the same interface.
In one embodiment, the user requirement file written based on SQL is an SQL statement;
when one interface needs to return data in multiple dimensions, editing multiple SQL sentences related to data in different dimensions in a visual interface configuration interface of the interface.
In one embodiment, the determining, by the interceptor, whether the interface in the interface call request has been configured includes:
judging whether an Url path in the interface call request is legal or not by adopting an Url interceptor, if so, not allowing access, and returning error information;
if the interface call request is judged to be legal, a token interceptor is adopted to check the token in the interface call request, if the check is not passed, access is not allowed, and error information is returned;
if the verification is passed, an api interceptor is entered, in which whether the Url interface address information in the interface call request is matched with the database is judged, if not, access is not allowed, and error information is returned;
if so, judging that the interface in the interface calling request is already configured.
In one embodiment, after the processing is performed on the corresponding data in the database according to the operation instruction, a return call result is implemented in the database.
In one embodiment, in the database, after processing corresponding data in the database according to the operation instruction, returning the call result includes:
the database access layer is connected to a database according to the operation instruction and sends a corresponding service request to the database;
the database management layer processes the database according to the service request and returns a processing result;
the database access layer returns the processing result to the data service layer;
and the data service layer processes the processing result according to the user requirement in the operation instruction and returns the processing result as a calling result.
A device for configuring and invoking a data service interface, the device comprising:
the interface configuration module is used for obtaining interface configuration information through a visual interface configuration interface, and the interface configuration information comprises: user demand files, interface identifications, interface parameters, interface addresses, call databases, call protocols, call modes and return result modes written based on SQL;
the interface auditing module is used for configuring an interface according to the interface configuration information after auditing the interface configuration information;
the interface inquiry module is used for acquiring an interface call request and judging whether an interface in the interface call request is configured or not through an interceptor;
the operation instruction generation module is used for extracting a corresponding user demand file according to an interface identifier configured by the interface if the interface is configured, analyzing the user demand file by adopting an SQL analyzer, and generating a corresponding operation instruction according to the user demand obtained after analysis;
and the calling result returning module is used for returning a calling result after processing corresponding data in the database according to the operation instruction.
A computer device comprising a memory storing a computer program and a processor which when executing the computer program performs the steps of:
obtaining interface configuration information through a visual interface configuration interface, wherein the interface configuration information comprises: user demand files, interface identifications, interface parameters, interface addresses, call databases, call protocols, call modes and return result modes written based on SQL;
after the interface configuration information is audited, configuring an interface according to the interface configuration information;
acquiring an interface call request, and judging whether an interface in the interface call request is configured or not through an interceptor;
if the interface is configured, extracting a corresponding user demand file according to an interface identifier configured by the interface, analyzing the user demand file by adopting an SQL analyzer, and generating a corresponding operation instruction according to the user demand obtained after analysis;
and processing corresponding data in the database according to the operation instruction, and returning a calling result.
A computer readable storage medium having stored thereon a computer program which when executed by a processor performs the steps of:
obtaining interface configuration information through a visual interface configuration interface, wherein the interface configuration information comprises: user demand files, interface identifications, interface parameters, interface addresses, call databases, call protocols, call modes and return result modes written based on SQL;
after the interface configuration information is audited, configuring an interface according to the interface configuration information;
acquiring an interface call request, and judging whether an interface in the interface call request is configured or not through an interceptor;
if the interface is configured, extracting a corresponding user demand file according to an interface identifier configured by the interface, analyzing the user demand file by adopting an SQL analyzer, and generating a corresponding operation instruction according to the user demand obtained after analysis;
and processing corresponding data in the database according to the operation instruction, and returning a calling result.
The configuration and calling method, the device, the equipment and the storage medium of the data service interface are characterized in that the interface is configured on the visual interface configuration interface, the SQL-written user demand file is adopted, after the interface is checked and passed, the interface calling request is obtained, whether the interface in the interface calling request is configured or not is judged through the interceptor, if the interface is configured, the corresponding user demand file is extracted according to the interface identifier configured by the interface, the SQL parser is adopted to parse the user demand file, the corresponding operation instruction is generated according to the user demand obtained after parsing, and finally, the calling result is returned after the corresponding data in the database is processed according to the operation instruction. In the method, SQL is adopted to edit the user demands to replace the conventional code writing, so that the time and labor cost are effectively saved.
Drawings
FIG. 1 is a flow diagram of a method for configuring and invoking a data service interface in one embodiment;
FIG. 2 is a diagram of a visual interface configuration interface for interface configuration in one embodiment;
FIG. 3 is a flow diagram of a data service interface call in one embodiment;
FIG. 4 is a block diagram of a configuration and invocation apparatus of a data service interface in one embodiment;
fig. 5 is an internal structural diagram of a computer device in one embodiment.
Detailed Description
The present application will be described in further detail with reference to the drawings and examples, in order to make the objects, technical solutions and advantages of the present application more apparent. It should be understood that the specific embodiments described herein are for purposes of illustration only and are not intended to limit the scope of the application.
Aiming at the problems that the development of the traditional data service usually needs to be carried out by using a programming language, more time and labor cost are required, and meanwhile, the development difficulty is also higher, and code confusion, maintenance difficulty and the like are easy to occur, in one embodiment, as shown in fig. 1, a configuration and calling method of a data service interface is provided, which comprises the following steps:
step S100, obtaining interface configuration information through a visual interface configuration interface, wherein the interface configuration information comprises: user demand files, interface identifications, interface parameters, interface addresses, call databases, call protocols, call modes and return result modes written based on SQL;
step S110, after checking the interface configuration information, configuring the interface according to the interface configuration information;
step S120, an interface calling request is obtained, and whether an interface in the interface calling request is configured or not is judged through an interceptor;
step S130, if the interface is configured, extracting a corresponding user demand file according to an interface identifier configured by the interface, analyzing the user demand file by adopting an SQL analyzer, and generating a corresponding operation instruction according to the user demand obtained after analysis;
step S140, after processing the corresponding data in the database according to the operation instruction, returning a calling result.
In the embodiment, interface configuration is completed rapidly through visual SQL statement configuration, joint debugging and docking between software systems are completed, personnel without code programming experience can complete data interface configuration rapidly, and cost of data interface docking between systems is reduced greatly.
In step S100, the interface is configured in a customized manner through the visualized interface configuration interface, where the user' S requirements are written based on the SQL language, as shown in fig. 2.
Aiming at the problem that the prior SQL-based interface can only return data of one dimension through the same interface when writing the interface, if complex data, namely multi-dimension data, needs to be configured with a plurality of interfaces for processing, in the embodiment, after corresponding data in a database are processed according to operation instructions, after calling results are returned, when data of other dimensions are required to be returned, on a visual interface configuration interface of the same interface, additional user requirements are written based on SQL, so that the data of the plurality of dimensions are returned through the same interface.
In this embodiment, the user requirement file written based on SQL is an SQL statement, and when one interface needs to perform data return with multiple dimensions, multiple SQL statements related to data with different dimensions are edited in the visual interface configuration interface of the interface.
In a specific operation mode, clicking the mark of 'adding' below the interface shown in fig. 2, and writing an SQL sentence according to new user requirements in a new SQL writing column.
Specifically, in fig. 2, the left side is a selected data source table, the right side is an SQL configuration interface, in which a plurality of SQL statements can be configured, if SQL1 and SQL2 are already configured as shown, the SQL1 configuration SQL statement is used for querying data, the SQL2 configuration SQL statement is used for querying total number, and the queried result is represented by data.
Next, in step S110, after the interface configuration information acquired through the visual interface configuration interface is checked and detected without any problem, the interface configuration is completed.
In step S120, an interface call request is received, that is, an HTTP API interface of the data service is called, in effect, the HTTP protocol is used to communicate with the data service, and the data service provides an API interface for allowing the developer to obtain the required data or submit the data to the service by sending the HTTP request, by sending the request and receiving the response, where the provided API interface is the interface already configured in step S100 and step S110.
After receiving the interface call request, judging whether the interface in the interface call request is configured or not through the interceptor, wherein the process is shown in fig. 3, and specifically comprises the following steps: and judging whether an Url path in the interface call request is legal or not by adopting an Url interceptor, if the judgment is that the access is not allowed by the law, returning error information, if the judgment is legal, checking the token in the interface call request by adopting the token interceptor, if the check is not passed, not allowing the access, returning the error information, if the check is passed, entering an api interceptor, in the api interceptor, judging whether the Url interface address information in the interface call request is matched with a database, if the Url address information is not matched with the database, not allowing the access, returning the error information, and if the access is not allowed, judging that the interface in the interface call request is configured.
In step S130, if the interface is determined to be configured after the above determination, the SQL parser is used to parse the user requirement file according to the user requirement file in the interface configuration information, and a corresponding operation instruction is generated according to the user requirement obtained after parsing.
Step S140 is implemented in a database, specifically, firstly, the database access layer connects to the database according to the operation instruction, and sends a corresponding service request to the database, then the database management layer queries the database according to the service request, and returns a query result, the database access layer returns the query result to the data service layer, and finally, the data service layer processes the query structure according to the user requirement in the operation instruction, and returns the query structure as a calling result.
In the configuration and calling method of the data service interface, a user can quickly generate corresponding SQL query sentences and data interfaces through simple configuration and conditional sentences, and can realize richer data service functions by adding new database connection and custom query sentences.
It should be understood that, although the steps in the flowchart of fig. 1 are shown in sequence as indicated by the arrows, the steps are not necessarily performed in sequence as indicated by the arrows. The steps are not strictly limited to the order of execution unless explicitly recited herein, and the steps may be executed in other orders. Moreover, at least some of the steps in fig. 1 may include multiple sub-steps or stages that are not necessarily performed at the same time, but may be performed at different times, nor do the order in which the sub-steps or stages are performed necessarily performed in sequence, but may be performed alternately or alternately with at least a portion of other steps or sub-steps of other steps.
In one embodiment, as shown in fig. 3, there is provided a configuration and invocation apparatus of a data service interface, including: an interface configuration module 200, an interface auditing module 210, an interface querying module 220, an operation instruction generating module 230 and a calling result returning module 240, wherein:
the interface configuration module 200 is configured to obtain interface configuration information through a visual interface configuration interface, where the interface configuration information includes: user demand files, interface identifications, interface parameters, interface addresses, call databases, call protocols, call modes and return result modes written based on SQL;
the interface auditing module 210 is configured to audit the interface configuration information and then configure an interface according to the interface configuration information;
the interface query module 220 is configured to obtain an interface call request, and determine, through an interceptor, whether an interface in the interface call request has been configured;
the operation instruction generating module 230 is configured to extract a corresponding user requirement file according to an interface identifier configured by the interface if the interface is configured, analyze the user requirement file by using an SQL analyzer, and generate a corresponding operation instruction according to the user requirement obtained after the analysis;
and the call result returning module 240 is configured to return a call result after processing corresponding data in the database according to the operation instruction.
For specific limitations on the configuration and calling means of the data service interface, reference may be made to the above limitations on the configuration and calling method of the data service interface, which are not described herein. The above-mentioned configuration of the data service interface and each module in the calling device may be implemented in whole or in part by software, hardware, and combinations thereof. The above modules may be embedded in hardware or may be independent of a processor in the computer device, or may be stored in software in a memory in the computer device, so that the processor may call and execute operations corresponding to the above modules.
In one embodiment, a computer device is provided, which may be a server, the internal structure of which may be as shown in fig. 4. The computer device includes a processor, a memory, a network interface, and a database connected by a system bus. Wherein the processor of the computer device is configured to provide computing and control capabilities. The memory of the computer device includes a non-volatile storage medium and an internal memory. The non-volatile storage medium stores an operating system, computer programs, and a database. The internal memory provides an environment for the operation of the operating system and computer programs in the non-volatile storage media. The database of the computer device is for storing data. The network interface of the computer device is used for communicating with an external terminal through a network connection. The computer program, when executed by a processor, implements a method for configuring and invoking a data service interface.
In one embodiment, a computer device is provided, which may be a terminal, and the internal structure of which may be as shown in fig. 4. The computer device includes a processor, a memory, a network interface, a display screen, and an input device connected by a system bus. Wherein the processor of the computer device is configured to provide computing and control capabilities. The memory of the computer device includes a non-volatile storage medium and an internal memory. The non-volatile storage medium stores an operating system and a computer program. The internal memory provides an environment for the operation of the operating system and computer programs in the non-volatile storage media. The network interface of the computer device is used for communicating with an external terminal through a network connection. The computer program, when executed by a processor, implements a method for configuring and invoking a data service interface. The display screen of the computer equipment can be a liquid crystal display screen or an electronic ink display screen, and the input device of the computer equipment can be a touch layer covered on the display screen, can also be keys, a track ball or a touch pad arranged on the shell of the computer equipment, and can also be an external keyboard, a touch pad or a mouse and the like.
It will be appreciated by persons skilled in the art that the architecture shown in fig. 4 is merely a block diagram of some of the architecture relevant to the present inventive arrangements and is not limiting as to the computer device to which the present inventive arrangements are applicable, and that a particular computer device may include more or fewer components than shown, or may combine some of the components, or have a different arrangement of components.
In one embodiment, a computer device is provided comprising a memory and a processor, the memory having stored therein a computer program, the processor when executing the computer program performing the steps of:
obtaining interface configuration information through a visual interface configuration interface, wherein the interface configuration information comprises: user demand files, interface identifications, interface parameters, interface addresses, call databases, call protocols, call modes and return result modes written based on SQL;
after the interface configuration information is audited, configuring an interface according to the interface configuration information;
acquiring an interface call request, and judging whether an interface in the interface call request is configured or not through an interceptor;
if the interface is configured, extracting a corresponding user demand file according to an interface identifier configured by the interface, analyzing the user demand file by adopting an SQL analyzer, and generating a corresponding operation instruction according to the user demand obtained after analysis;
and processing corresponding data in the database according to the operation instruction, and returning a calling result.
In one embodiment, a computer readable storage medium is provided having a computer program stored thereon, which when executed by a processor, performs the steps of:
obtaining interface configuration information through a visual interface configuration interface, wherein the interface configuration information comprises: user demand files, interface identifications, interface parameters, interface addresses, call databases, call protocols, call modes and return result modes written based on SQL;
after the interface configuration information is audited, configuring an interface according to the interface configuration information;
acquiring an interface call request, and judging whether an interface in the interface call request is configured or not through an interceptor;
if the interface is configured, extracting a corresponding user demand file according to an interface identifier configured by the interface, analyzing the user demand file by adopting an SQL analyzer, and generating a corresponding operation instruction according to the user demand obtained after analysis;
and processing corresponding data in the database according to the operation instruction, and returning a calling result.
Those skilled in the art will appreciate that implementing all or part of the above described methods may be accomplished by way of a computer program stored on a non-transitory computer readable storage medium, which when executed, may comprise the steps of the embodiments of the methods described above. Any reference to memory, storage, database, or other medium used in embodiments provided herein may include non-volatile and/or volatile memory. The nonvolatile memory can include Read Only Memory (ROM), programmable ROM (PROM), electrically Programmable ROM (EPROM), electrically Erasable Programmable ROM (EEPROM), or flash memory. Volatile memory can include Random Access Memory (RAM) or external cache memory. By way of illustration and not limitation, RAM is available in a variety of forms such as Static RAM (SRAM), dynamic RAM (DRAM), synchronous DRAM (SDRAM), double Data Rate SDRAM (DDRSDRAM), enhanced SDRAM (ESDRAM), synchronous Link DRAM (SLDRAM), memory bus direct RAM (RDRAM), direct memory bus dynamic RAM (DRDRAM), and memory bus dynamic RAM (RDRAM), among others.
The technical features of the above embodiments may be arbitrarily combined, and all possible combinations of the technical features in the above embodiments are not described for brevity of description, however, as long as there is no contradiction between the combinations of the technical features, they should be considered as the scope of the description.
The above examples illustrate only a few embodiments of the application, which are described in detail and are not to be construed as limiting the scope of the application. It should be noted that it will be apparent to those skilled in the art that several variations and modifications can be made without departing from the spirit of the application, which are all within the scope of the application. Accordingly, the scope of protection of the present application is to be determined by the appended claims.

Claims (9)

1. A method for configuring and invoking a data service interface, the method comprising:
obtaining interface configuration information through a visual interface configuration interface, wherein the interface configuration information comprises: user demand files, interface identifications, interface parameters, interface addresses, call databases, call protocols, call modes and return result modes written based on SQL;
after the interface configuration information is audited, configuring an interface according to the interface configuration information;
acquiring an interface call request, and judging whether an interface in the interface call request is configured or not through an interceptor;
if the interface is configured, extracting a corresponding user demand file according to an interface identifier configured by the interface, analyzing the user demand file by adopting an SQL analyzer, and generating a corresponding operation instruction according to the user demand obtained after analysis;
and processing corresponding data in the database according to the operation instruction, and returning a calling result.
2. The configuration and invocation method of claim 1, wherein after the corresponding data in the database is processed according to the operation instruction, after the invocation result is returned:
on the visual interface configuration interface of the same interface, writing other user demands based on SQL so as to realize data return of multiple dimensions through the same interface.
3. The configuration and invocation method of claim 2, wherein the user-required file written based on SQL is an SQL statement;
when one interface needs to return data in multiple dimensions, editing multiple SQL sentences related to data in different dimensions in a visual interface configuration interface of the interface.
4. The method according to claim 3, wherein the determining, by the interceptor, whether the interface in the interface call request has been configured comprises:
judging whether an Url path in the interface call request is legal or not by adopting an Url interceptor, if so, not allowing access, and returning error information;
if the interface call request is judged to be legal, a token interceptor is adopted to check the token in the interface call request, if the check is not passed, access is not allowed, and error information is returned;
if the verification is passed, an api interceptor is entered, in which whether the Url interface address information in the interface call request is matched with the database is judged, if not, access is not allowed, and error information is returned;
if so, judging that the interface in the interface calling request is already configured.
5. The method according to claim 4, wherein the return call result is implemented in the database after the corresponding data in the database is processed according to the operation instruction.
6. The method according to claim 5, wherein, in the database, after processing the corresponding data in the database according to the operation instruction, returning the call result includes:
the database access layer is connected to a database according to the operation instruction and sends a corresponding service request to the database;
the database management layer processes the database according to the service request and returns a processing result;
the database access layer returns the processing result to the data service layer;
and the data service layer processes the processing result according to the user requirement in the operation instruction and returns the processing result as a calling result.
7. A device for configuring and invoking a data service interface, the device comprising:
the interface configuration module is used for obtaining interface configuration information through a visual interface configuration interface, and the interface configuration information comprises: user demand files, interface identifications, interface parameters, interface addresses, call databases, call protocols, call modes and return result modes written based on SQL;
the interface auditing module is used for configuring an interface according to the interface configuration information after auditing the interface configuration information;
the interface inquiry module is used for acquiring an interface call request and judging whether an interface in the interface call request is configured or not through an interceptor;
the operation instruction generation module is used for extracting a corresponding user demand file according to an interface identifier configured by the interface if the interface is configured, analyzing the user demand file by adopting an SQL analyzer, and generating a corresponding operation instruction according to the user demand obtained after analysis;
and the calling result returning module is used for returning a calling result after processing corresponding data in the database according to the operation instruction.
8. A computer device comprising a memory and a processor, the memory storing a computer program, characterized in that the processor implements the steps of the method of any of claims 1 to 6 when the computer program is executed.
9. A computer readable storage medium, on which a computer program is stored, characterized in that the computer program, when being executed by a processor, implements the steps of the method of any of claims 1 to 6.
CN202311034207.6A 2023-08-16 2023-08-16 Configuration and calling method, device and equipment of data service interface and storage medium Pending CN117194538A (en)

Priority Applications (1)

Application Number Priority Date Filing Date Title
CN202311034207.6A CN117194538A (en) 2023-08-16 2023-08-16 Configuration and calling method, device and equipment of data service interface and storage medium

Applications Claiming Priority (1)

Application Number Priority Date Filing Date Title
CN202311034207.6A CN117194538A (en) 2023-08-16 2023-08-16 Configuration and calling method, device and equipment of data service interface and storage medium

Publications (1)

Publication Number Publication Date
CN117194538A true CN117194538A (en) 2023-12-08

Family

ID=88982692

Family Applications (1)

Application Number Title Priority Date Filing Date
CN202311034207.6A Pending CN117194538A (en) 2023-08-16 2023-08-16 Configuration and calling method, device and equipment of data service interface and storage medium

Country Status (1)

Country Link
CN (1) CN117194538A (en)

Similar Documents

Publication Publication Date Title
CN109446068B (en) Interface test method, device, computer equipment and storage medium
CN110290212B (en) Service call recording method, device, computer equipment and storage medium
US8601438B2 (en) Data transformation based on a technical design document
CN110427188B (en) Configuration method, device, equipment and storage medium of single-test assertion program
CN108319575B (en) Page component checking method, device, server and storage medium
CN108111364B (en) Service system testing method and device
CN113127347B (en) Interface testing method, device, equipment and readable storage medium
CN107862425B (en) Wind control data acquisition method, device and system and readable storage medium
CN110580189A (en) method and device for generating front-end page, computer equipment and storage medium
WO2020192141A1 (en) Method and device for simulating interface, computer apparatus, and storage medium
CN110147495A (en) Page response method, apparatus, equipment and medium based on Configuration Online
CN108415998B (en) Application dependency relationship updating method, terminal, device and storage medium
CN105740219A (en) Report self-defining method and device
CN115357590A (en) Recording method and device for data change, electronic device and storage medium
CN112395182A (en) Automatic testing method, device, equipment and computer readable storage medium
CN111522881B (en) Service data processing method, device, server and storage medium
CN108228611B (en) Document information copying method and device
CN109857716B (en) System interaction log recording method and device, storage medium and server
CN117194538A (en) Configuration and calling method, device and equipment of data service interface and storage medium
CN112417020B (en) Service expansion realization method, device, computer equipment and storage medium
CN114186958A (en) Method, computing device and storage medium for exporting list data as spreadsheet
WO2021121130A1 (en) Method and apparatus for information collection, computer device, and storage medium
CN114116268A (en) Method and device for checking Flink SQL statement, computer equipment and storage medium
CN113254399A (en) Log query method and device, electronic equipment and medium
CN114371866A (en) Version reconfiguration test method, device and equipment of service system

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