CN112905160A - Axios-based package registration global interception method and device - Google Patents

Axios-based package registration global interception method and device Download PDF

Info

Publication number
CN112905160A
CN112905160A CN202110171191.8A CN202110171191A CN112905160A CN 112905160 A CN112905160 A CN 112905160A CN 202110171191 A CN202110171191 A CN 202110171191A CN 112905160 A CN112905160 A CN 112905160A
Authority
CN
China
Prior art keywords
axios
file
interceptor
library
request
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
CN202110171191.8A
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.)
Industrial and Commercial Bank of China Ltd ICBC
Original Assignee
Industrial and Commercial Bank of China Ltd ICBC
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 Industrial and Commercial Bank of China Ltd ICBC filed Critical Industrial and Commercial Bank of China Ltd ICBC
Priority to CN202110171191.8A priority Critical patent/CN112905160A/en
Publication of CN112905160A publication Critical patent/CN112905160A/en
Pending legal-status Critical Current

Links

Images

Classifications

    • GPHYSICS
    • G06COMPUTING; CALCULATING OR COUNTING
    • G06FELECTRIC DIGITAL DATA PROCESSING
    • G06F8/00Arrangements for software engineering
    • G06F8/30Creation or generation of source code
    • G06F8/31Programming languages or programming paradigms

Landscapes

  • Engineering & Computer Science (AREA)
  • Software Systems (AREA)
  • General Engineering & Computer Science (AREA)
  • Theoretical Computer Science (AREA)
  • Computing Systems (AREA)
  • Physics & Mathematics (AREA)
  • General Physics & Mathematics (AREA)
  • Stored Programmes (AREA)

Abstract

The invention provides an axios-based package registration global interception method and device, which can be applied to the field of finance, and the method comprises the following steps: establishing a file containing a JavaScript code line; inserting a pre-established axios library into the file; a request interceptor and a response interceptor are built in a file through an axios library to respond to and intercept api requests issued by external programs. The method and the system utilize the characteristics of axios to package the get and post methods of axios, realize a request interceptor and a response interceptor through coding, and realize the effect of unified api management by globally introducing and registering the requests and the response interceptors into a project through an entry file main.

Description

Axios-based package registration global interception method and device
Technical Field
The application belongs to the technical field of vue construction engineering, and particularly relates to a vue axios-based package registration global interception method and device.
Background
The existing web front-end and back-end network interaction implementation mode mainly uses an ajax method of a jquery library. In addition, a more original method is to use new XMLHttpRequest to create the object sending the request, and then perform web front-end and back-end network interaction.
Both the above two network request modes need to compile a section of similar code for each http request separately to implement the network request, which increases the maintenance cost of the code, and if the service requirement changes in a certain day, it needs to enhance the security of the network interface request or add different request header key value pairs according to different service scenarios, at this time, it needs to add a key or service identifier for the request header of each network request interface, which brings about the problem that each previously compiled network request code needs to be repeatedly changed, the maintenance cost is high and the compatibility is low.
Disclosure of Invention
The application provides an axios encapsulation registration global interception method and device, which are used for solving the problems that the compatibility of a current network request mode service scene is insufficient and the return state of a request cannot be processed uniformly.
According to one aspect of the application, an axios-based encapsulation registration global interception method is provided, which includes:
establishing a file containing a JavaScript code line;
inserting a pre-established axios library into the file;
a request interceptor and a response interceptor are built in a file through an axios library to respond to and intercept api requests issued by external programs.
In an embodiment, the axios-based package registration global interception method further includes:
before the file containing the JavaScript code lines is built, the axios library is built by the npm command.
In one embodiment, building a request interceptor and a response interceptor in a file through an axios library comprises:
packaging the get method and the post method in the axios library in the file and exposing the packaged methods to the outside of the file;
and constructing a request interceptor and a response interceptor by encoding by utilizing the request response interception characteristic of the axios library.
In an embodiment, the axios-based package registration global interception method further includes:
a file with a request interceptor and a corresponding interceptor is inserted in the project entry file and the exposed methods are registered in the global variables.
According to another aspect of the present application, there is also provided an axios-based encapsulation registration global interception apparatus, including:
the file establishing unit is used for establishing a file containing a JavaScript code line;
an axios library insertion unit, which is used for inserting a pre-established axios library into the file;
and the interceptor constructing unit is used for constructing a request interceptor and a response interceptor through an axios library in the file so as to respond and intercept the api request sent by the external program.
In an embodiment, the axios-based package registration global interception apparatus further includes:
and the axios library establishing unit is used for establishing the axios library through an npm command before establishing the file containing the JavaScript code lines.
In an embodiment, the interceptor constructing unit comprises:
the packaging module is used for packaging the get method and the post method in the axios library in the file and exposing the packaged methods to the outside of the file;
and the interceptor constructing module is used for constructing the request interceptor and the response interceptor by coding by using the request response intercepting characteristics of the axios library.
In an embodiment, the axios-based package registration global interception apparatus further includes:
vue registration module for inserting a file with a request interceptor and a corresponding interceptor into the project entry file and registering the exposed methods in the global variables.
The method and the device can correspondingly modify the request according to different service scenes to meet different service requirements, and can filter out wrong responses, release client resources, reduce the maintenance cost of the codes and make the codes more concise.
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 flowchart of an axios-based package registration global interception method provided in the present application.
FIG. 2 is a flowchart of a method for constructing a request interceptor and a response interceptor through an axios library in an embodiment of the present application.
Fig. 3 is a block diagram of an axios-based package registration global interception apparatus according to the present application.
Fig. 4 is a block diagram of a structure of an interceptor constructing unit in an embodiment of the present application.
Fig. 5 is a specific implementation of an electronic device in an embodiment of the present application.
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 specific embodiments provided in the present application may be applied to the financial field, and may also be applied to other technical fields besides the financial field, which is not limited to the present application.
The conventional network request method has other disadvantages besides high code maintenance cost as described in the background art, for example, the compatibility of service scenes is insufficient, when a plurality of service modules exist and each service scene corresponds to different background services, a network request identifier specific to the corresponding service scene is naturally provided, at this time, a corresponding request identifier needs to be added for each interface request of different service modules, and meanwhile, the network request identifier needs to be distinguished from other service modules, so that the request identifier of each network request cannot be judged and processed uniformly before the network request is sent out, and thus different service scenes cannot be compatible and invalid return results cannot be intercepted uniformly.
In order to solve the above problem, the present application provides an axios-based encapsulation registration global interception method, as shown in fig. 1, including:
s101: a file containing lines of JavaScript code is created.
S102: a pre-established axios library is inserted into the file.
S103: a request interceptor and a response interceptor are built in a file through an axios library to respond to and intercept api requests issued by external programs.
In an embodiment, the axios-based package registration global interception method further includes:
before the file containing the JavaScript code lines is built, the axios library is built by the npm command.
The execution main body of the method shown in fig. 1 may be a PC, a terminal, and the like, and first a service program sends a request api through a global method (a get method or a post method), before sending the request, an interceptor intercepts the request and then reforms the request according to different service scene requirements, for example, sets a request header, serializes submitted data, and the like, and after processing the request, sends the request to a server. The server returns a response, the response is intercepted by the interceptor before the returned data is subjected to business processing, the returned status codes are subjected to unified judgment processing, the wrong returned results are processed, and finally the normal request returned results are transmitted to the corresponding business program for processing.
In a specific embodiment, in an vue (3D rendering solution product) project, an axios library is installed and introduced, an api.js file is created, then the axios library is introduced into the file, a get method and a post method are encapsulated in a coding manner, interface request methods are exposed outside, and meanwhile, a request response interception characteristic of the axios library is utilized, and a request interceptor and a corresponding interceptor are implemented by coding the request response interception characteristic, so that the request is intercepted before being sent, and a response returned by a requested party is intercepted.
In one embodiment, the construction of the request interceptor and the response interceptor in a file by an axios library, as shown in FIG. 2, includes:
s201: packaging the get method and the post method in the axios library in the file and exposing the packaged methods to the outside of the file;
s202: and constructing a request interceptor and a response interceptor by encoding by utilizing the request response interception characteristic of the axios library.
In a specific embodiment, the axios library is installed through npm commands, then an api.js file is newly built under the src directory of vue projects, then the axios library is introduced into the api.js file, and the get and post methods in the axios library are encapsulated and exposed in the api.js file. An api.js file is introduced in an entry file main.js of the vue project, and the get method and the post method definitions are registered in the global variable vue.
The execution main body of the method shown in fig. 2 is a PC, a terminal, etc., an axios library is installed in a file through npm commands, and then a request interceptor and a corresponding interceptor are constructed by coding by using the response characteristic and the interception characteristic of the axios library, so that the function of intercepting the request and the request correspondingly is realized.
In an embodiment, the axios-based package registration global interception method further includes:
a file with a request interceptor and a corresponding interceptor is inserted in the project entry file and the exposed methods are registered in the global variables.
In a specific embodiment, an api.js file is introduced into an entry file main.js of an vue project, and the definition of a get method and a post method is registered in a global variable vue, at this time, an api request can be made globally using get () and post () methods encapsulated in the api.js file by using this. $ get () or this. $ post () anywhere in vue project.
Based on the same inventive concept, the embodiment of the present application further provides an axios-based package registration global interception apparatus, which can be used to implement the method described in the above embodiments, as described in the following embodiments. Because the principle of solving the problem of the axios-based package registration global interception device is similar to that of the axios-based package registration global interception method, the axios-based package registration global interception device can be implemented by the axios-based package registration global interception method, and repeated details are not repeated. As used hereinafter, the term "unit" or "module" may be a combination of software and/or hardware that implements a predetermined function. While the system described in the embodiments below is preferably implemented in software, implementations in hardware, or a combination of software and hardware are also possible and contemplated.
According to another aspect of the present application, there is also provided an axios-based package registration global interception apparatus, as shown in fig. 3, including:
a file establishing unit 301, configured to establish a file including a JavaScript code line;
an axios library insertion unit 302, configured to insert a pre-established axios library into a file;
an interceptor constructing unit 303, configured to construct a request interceptor and a response interceptor in a file through an axios library to respond to and intercept the api request issued by the external program.
In an embodiment, the axios-based package registration global interception apparatus further includes:
and the axios library establishing unit is used for establishing the axios library through an npm command before establishing the file containing the JavaScript code lines.
In one embodiment, as shown in fig. 4, the interceptor constructing unit 303 includes:
the packaging module 401 is used for packaging the get method and the post method in the axios library in the file and exposing the packaged methods to the outside of the file;
an interceptor constructing module 402 for constructing a request interceptor and a response interceptor by encoding using the request response intercepting characteristics of the axios library.
In an embodiment, the axios-based package registration global interception apparatus further includes:
vue registration module for inserting a file with a request interceptor and a corresponding interceptor into the project entry file and registering the exposed methods in the global variables.
In item vue, the block for obtaining data interactively with the background usually uses axios library, which is an HTTP client based on Promise for browser and nodejs, and essentially encapsulates native XHR, but it is an implementation version of Promise, and conforms to the latest ES specification, and the axios library has the following characteristics: promise api support, intercept requests and responses, translate request data and response data, and cancel requests. The method and the system utilize the characteristics of axios to package the get and post methods of axios, realize a request interceptor and a response interceptor through coding, and realize the effect of unified api management by globally introducing and registering the requests and the response interceptors into a project through an entry file main. This application has following advantage:
the request interceptor can perform unified processing on the request before sending the request, such as: and setting request headers, application version numbers, terminal types and the like, and correspondingly modifying the request according to different service scenes so as to meet different service requirements.
The response interceptor can perform the next operation according to the state code of the response, such as: since the current token expires, the interface returns 401 unauthorized, and a re-login operation is performed. In addition, wrong responses can be filtered, client resources are released, and the processing capacity of the client is utilized more reasonably.
The encapsulated get and post request method is introduced globally at vue, so that the effect of quoting everywhere is achieved without repeatedly writing the same set of codes, the code maintenance cost is greatly reduced, and the codes are simpler and more robust.
An embodiment of the present application further provides a specific implementation manner of an electronic device capable of implementing all steps in the method in the foregoing embodiment, and referring to fig. 5, the electronic device specifically includes the following contents:
a processor (processor)501, a memory 502, a communication Interface 503, a bus 504, and a nonvolatile memory 505;
the processor 501, the memory 502, the communication interface 503 and the nonvolatile memory 505 complete communication with each other through the bus 504;
the processor 501 is configured to call the computer programs in the memory 502 and the nonvolatile memory 505, and when the processor executes the computer programs, the processor implements all the steps in the method in the foregoing embodiments, for example, when the processor executes the computer programs, the processor implements the following steps:
s101: a file containing lines of JavaScript code is created.
S102: a pre-established axios library is inserted into the file.
S103: a request interceptor and a response interceptor are built in a file through an axios library to respond to and intercept api requests issued by external programs.
Embodiments of the present application also provide a computer-readable storage medium capable of implementing all the steps of the method in the above embodiments, where the computer-readable storage medium stores thereon a computer program, and the computer program when executed by a processor implements all the steps of the method in the above embodiments, for example, the processor implements the following steps when executing the computer program:
s101: a file containing lines of JavaScript code is created.
S102: a pre-established axios library is inserted into the file.
S103: a request interceptor and a response interceptor are built in a file through an axios library to respond to and intercept api requests issued by external programs.
The embodiments in the present specification are described in a progressive manner, and the same and similar parts among the embodiments are referred to each other, and each embodiment focuses on the differences from the other embodiments. In particular, for the hardware + program class embodiment, since it is substantially similar to the method embodiment, the description is simple, and the relevant points can be referred to the partial description of the method embodiment. Although embodiments of the present description provide method steps as described in embodiments or flowcharts, more or fewer steps may be included based on conventional or non-inventive means. The order of steps recited in the embodiments is merely one manner of performing the steps in a multitude of orders and does not represent the only order of execution. When an actual apparatus or end product executes, it may execute sequentially or in parallel (e.g., parallel processors or multi-threaded environments, or even distributed data processing environments) according to the method shown in the embodiment or the figures. The terms "comprises," "comprising," or any other variation thereof, are intended to cover a non-exclusive inclusion, such that a process, method, article, or apparatus that comprises a list of elements does not include only those elements but may include other elements not expressly listed or inherent to such process, method, article, or apparatus. Without further limitation, the presence of additional identical or equivalent elements in a process, method, article, or apparatus that comprises the recited elements is not excluded. For convenience of description, the above devices are described as being divided into various modules by functions, and are described separately. Of course, in implementing the embodiments of the present description, the functions of each module may be implemented in one or more software and/or hardware, or a module implementing the same function may be implemented by a combination of multiple sub-modules or sub-units, and the like. The above-described embodiments of the apparatus are merely illustrative, and for example, the division of the units is only one logical division, and other divisions may be realized in practice, for example, a plurality of units or components may be combined or integrated into another system, or some features may be omitted, or not executed. In addition, the shown or discussed mutual coupling or direct coupling or communication connection may be an indirect coupling or communication connection through some interfaces, devices or units, and may be in an electrical, mechanical or other form. The present invention is described with reference to flowchart illustrations and/or block diagrams of methods, apparatus (systems), and computer program products according to embodiments of the invention. It will be understood that each flow and/or block of the flow diagrams and/or block diagrams, and combinations of flows and/or blocks in the flow diagrams and/or block diagrams, can be implemented by computer program instructions. These computer program instructions may be provided to a processor of a general purpose computer, special purpose computer, embedded processor, or other programmable data processing apparatus to produce a machine, such that the instructions, which execute via the processor of the computer or other programmable data processing apparatus, create means for implementing the functions specified in the flowchart flow or flows and/or block diagram block or blocks. As will be appreciated by one skilled in the art, embodiments of the present description may be provided as a method, system, or computer program product. Accordingly, embodiments of the present description may take the form of an entirely hardware embodiment, an entirely software embodiment or an embodiment combining software and hardware aspects. Furthermore, embodiments of the present description may take the form of a computer program product embodied on one or more computer-usable storage media (including, but not limited to, disk storage, CD-ROM, optical storage, and so forth) having computer-usable program code embodied therein. The embodiments in the present specification are described in a progressive manner, and the same and similar parts among the embodiments are referred to each other, and each embodiment focuses on the differences from the other embodiments. In particular, for the system embodiment, since it is substantially similar to the method embodiment, the description is simple, and for the relevant points, reference may be made to the partial description of the method embodiment. In the description herein, references to the description of the term "one embodiment," "some embodiments," "an example," "a specific example," or "some examples," etc., mean that a particular feature, structure, material, or characteristic described in connection with the embodiment or example is included in at least one embodiment or example of an embodiment of the specification. In this specification, the schematic representations of the terms used above are not necessarily intended to refer to the same embodiment or example. Furthermore, various embodiments or examples and features of different embodiments or examples described in this specification can be combined and combined by one skilled in the art without contradiction. The above description is only an example of the embodiments of the present disclosure, and is not intended to limit the embodiments of the present disclosure. Various modifications and variations to the embodiments described herein will be apparent to those skilled in the art. Any modification, equivalent replacement, improvement, etc. made within the spirit and principle of the embodiments of the present specification should be included in the scope of the claims of the embodiments of the present specification.

Claims (10)

1. An axios-based encapsulation registration global interception method is characterized by comprising the following steps:
establishing a file containing a JavaScript code line;
inserting a pre-established axios library into the file;
and constructing a request interceptor and a response interceptor in the file through the axios library so as to respond and intercept the api request sent by an external program.
2. The axios-based encapsulation registration global interception method according to claim 1, further comprising:
before the file containing the JavaScript code lines is built, the axios library is built by the npm command.
3. The axios-based package registration global interception method according to claim 1, wherein said building a request interceptor and a response interceptor in said file through said axios library comprises:
packaging the HTTP method in the axios library in the file and exposing the packaged method to the outside of the file; the HTTP method comprises the following steps: the get method and the post method;
and constructing a request interceptor and a response interceptor by encoding by using the request response interception characteristic of the axios library.
4. The axios-based encapsulation registration global interception method according to claim 1, further comprising:
the file with the request interceptor and the corresponding interceptor is inserted into the project entry file and the exposed methods are registered in the global variables.
5. An axios-based encapsulation registration global interception apparatus, comprising:
the file establishing unit is used for establishing a file containing a JavaScript code line;
an axios library insertion unit, configured to insert a pre-established axios library into the file;
and the interceptor constructing unit is used for constructing a request interceptor and a response interceptor in the file through the axios library so as to respond and intercept the api request sent by an external program.
6. The axios-based package registration global interception apparatus according to claim 5, further comprising:
and the axios library establishing unit is used for establishing the axios library through an npm command before establishing the file containing the JavaScript code lines.
7. The axios-based package registration global interception device according to claim 5, wherein said interceptor constructing unit comprises:
the packaging module is used for packaging the get method and the post method in the axios library in the file and exposing the packaged methods to the outside of the file;
and the interceptor constructing module is used for constructing a request interceptor and a response interceptor by coding according to the request response intercepting characteristics of the axios library.
8. The axios-based package registration global interception apparatus according to claim 5, further comprising:
vue registration module for inserting the file with the request interceptor and corresponding interceptor into the project entry file and registering the exposed methods in the global variables.
9. An electronic device comprising a memory, a processor and a computer program stored on the memory and executable on the processor, wherein the processor implements the steps of the axios encapsulation registration global interception method of any of claims 1 to 4 when executing the program.
10. A computer readable storage medium having stored thereon a computer program, characterized in that the computer program, when being executed by a processor, realizes the steps of the envelope registration global interception method of axios of any of the claims 1 to 4.
CN202110171191.8A 2021-02-08 2021-02-08 Axios-based package registration global interception method and device Pending CN112905160A (en)

Priority Applications (1)

Application Number Priority Date Filing Date Title
CN202110171191.8A CN112905160A (en) 2021-02-08 2021-02-08 Axios-based package registration global interception method and device

Applications Claiming Priority (1)

Application Number Priority Date Filing Date Title
CN202110171191.8A CN112905160A (en) 2021-02-08 2021-02-08 Axios-based package registration global interception method and device

Publications (1)

Publication Number Publication Date
CN112905160A true CN112905160A (en) 2021-06-04

Family

ID=76124020

Family Applications (1)

Application Number Title Priority Date Filing Date
CN202110171191.8A Pending CN112905160A (en) 2021-02-08 2021-02-08 Axios-based package registration global interception method and device

Country Status (1)

Country Link
CN (1) CN112905160A (en)

Cited By (2)

* Cited by examiner, † Cited by third party
Publication number Priority date Publication date Assignee Title
CN115277187A (en) * 2022-07-26 2022-11-01 新明珠集团股份有限公司 Method, device, storage medium and equipment for prompting request data verification result
CN116112558A (en) * 2022-11-21 2023-05-12 上海浦东发展银行股份有限公司 Interface interception method and system based on axios

Citations (6)

* Cited by examiner, † Cited by third party
Publication number Priority date Publication date Assignee Title
CN109669597A (en) * 2018-10-31 2019-04-23 武汉艺果互动科技股份有限公司 Front end authority control method, equipment and storage equipment when user browses web sites
CN109889468A (en) * 2017-12-06 2019-06-14 腾讯科技(武汉)有限公司 Transmission method, system, device, equipment and the storage medium of network data
CN111142851A (en) * 2019-12-30 2020-05-12 北京明略软件系统有限公司 Abnormal request processing method and device, electronic equipment and storage medium
CN111222014A (en) * 2019-12-30 2020-06-02 北京达佳互联信息技术有限公司 Request processing method and device, electronic equipment and storage medium
CN112015383A (en) * 2019-05-28 2020-12-01 北京京东尚科信息技术有限公司 Login method and device
CN112217788A (en) * 2020-09-01 2021-01-12 国网福建省电力有限公司三明供电公司 Encryption method and system for Web interface data

Patent Citations (6)

* Cited by examiner, † Cited by third party
Publication number Priority date Publication date Assignee Title
CN109889468A (en) * 2017-12-06 2019-06-14 腾讯科技(武汉)有限公司 Transmission method, system, device, equipment and the storage medium of network data
CN109669597A (en) * 2018-10-31 2019-04-23 武汉艺果互动科技股份有限公司 Front end authority control method, equipment and storage equipment when user browses web sites
CN112015383A (en) * 2019-05-28 2020-12-01 北京京东尚科信息技术有限公司 Login method and device
CN111142851A (en) * 2019-12-30 2020-05-12 北京明略软件系统有限公司 Abnormal request processing method and device, electronic equipment and storage medium
CN111222014A (en) * 2019-12-30 2020-06-02 北京达佳互联信息技术有限公司 Request processing method and device, electronic equipment and storage medium
CN112217788A (en) * 2020-09-01 2021-01-12 国网福建省电力有限公司三明供电公司 Encryption method and system for Web interface data

Cited By (2)

* Cited by examiner, † Cited by third party
Publication number Priority date Publication date Assignee Title
CN115277187A (en) * 2022-07-26 2022-11-01 新明珠集团股份有限公司 Method, device, storage medium and equipment for prompting request data verification result
CN116112558A (en) * 2022-11-21 2023-05-12 上海浦东发展银行股份有限公司 Interface interception method and system based on axios

Similar Documents

Publication Publication Date Title
CN108881111B (en) Method and device for realizing multi-tenant system
CN112905160A (en) Axios-based package registration global interception method and device
CN104461491A (en) Running method and system of Hybrid components
CN111722947A (en) Service calling method and system
EP3462330A1 (en) Fault tolerant adapter system to consume database as a service
CN110048907B (en) Global flow control method and device in cluster environment
CN111858727A (en) Multi-data-source data export system and method based on template configuration
CN110580174A (en) application component generation method, server and terminal
CN111897623A (en) Cluster management method, device, equipment and storage medium
CN114706690A (en) Method and system for sharing GPU (graphics processing Unit) by Kubernetes container
CN111367690A (en) Method and device for supporting combined API service calling
CN108833500B (en) Service calling method, service providing method, data transmission method and server
CN109343970B (en) Application program-based operation method and device, electronic equipment and computer medium
CN110187986A (en) A kind of command management method, system, device and computer readable storage medium
CN108512889A (en) A kind of application response method for pushing and proxy server based on HTTP
CN109525550B (en) Data message processing method, device and system
US7818426B2 (en) Method and system for processing a message by a message provider
CN103197950A (en) Plug-in virtual machine implementing method
CN113296987B (en) Interface calling method and device for calling module, computer equipment and storage medium
CN111708519B (en) Service component processing method, device, equipment and storage medium
CN113391882A (en) Virtual machine memory management method and device, storage medium and electronic equipment
CN113485942A (en) Automatic testing method and device based on independent module
Truyen et al. Aspects for run-time component integration
CN101478655A (en) Interface development displaying method, system and network server for digital television reception terminal
CN112463357A (en) Method and equipment for safe interaction of server in-band data

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