CN111859233A - Data interaction method, system, computer device and readable storage medium - Google Patents

Data interaction method, system, computer device and readable storage medium Download PDF

Info

Publication number
CN111859233A
CN111859233A CN202010481667.3A CN202010481667A CN111859233A CN 111859233 A CN111859233 A CN 111859233A CN 202010481667 A CN202010481667 A CN 202010481667A CN 111859233 A CN111859233 A CN 111859233A
Authority
CN
China
Prior art keywords
page
data
writing
reading
tag
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
CN202010481667.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.)
China Coal Electrical Co ltd
Original Assignee
China Coal Electrical 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 Coal Electrical Co ltd filed Critical China Coal Electrical Co ltd
Priority to CN202010481667.3A priority Critical patent/CN111859233A/en
Publication of CN111859233A publication Critical patent/CN111859233A/en
Pending legal-status Critical Current

Links

Images

Classifications

    • GPHYSICS
    • G06COMPUTING; CALCULATING OR COUNTING
    • G06FELECTRIC DIGITAL DATA PROCESSING
    • G06F16/00Information retrieval; Database structures therefor; File system structures therefor
    • G06F16/90Details of database functions independent of the retrieved data types
    • G06F16/95Retrieval from the web
    • G06F16/958Organisation or management of web site content, e.g. publishing, maintaining pages or automatic linking
    • 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
    • G06F8/315Object-oriented languages
    • 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
    • HELECTRICITY
    • H04ELECTRIC COMMUNICATION TECHNIQUE
    • H04LTRANSMISSION OF DIGITAL INFORMATION, e.g. TELEGRAPHIC COMMUNICATION
    • H04L67/00Network arrangements or protocols for supporting network services or applications
    • H04L67/01Protocols
    • H04L67/02Protocols based on web technology, e.g. hypertext transfer protocol [HTTP]
    • HELECTRICITY
    • H04ELECTRIC COMMUNICATION TECHNIQUE
    • H04LTRANSMISSION OF DIGITAL INFORMATION, e.g. TELEGRAPHIC COMMUNICATION
    • H04L67/00Network arrangements or protocols for supporting network services or applications
    • H04L67/50Network services
    • H04L67/56Provisioning of proxy services

Landscapes

  • Engineering & Computer Science (AREA)
  • Theoretical Computer Science (AREA)
  • General Engineering & Computer Science (AREA)
  • Software Systems (AREA)
  • General Physics & Mathematics (AREA)
  • Physics & Mathematics (AREA)
  • Databases & Information Systems (AREA)
  • Signal Processing (AREA)
  • Computer Networks & Wireless Communication (AREA)
  • Data Mining & Analysis (AREA)
  • Computing Systems (AREA)
  • Human Computer Interaction (AREA)
  • Information Retrieval, Db Structures And Fs Structures Therefor (AREA)

Abstract

The invention discloses a method, a system, computer equipment and a readable storage medium for realizing data interaction. The method comprises the following steps: integrating pages from different sources in the same page by using an iframe technology at a webpage interface end, wherein a first page in a first source address is marked under an iframe1 label, and a second page in a second source address is marked under an iframe2 label; when the first page transmits data to the second page, adopting a JS technology to read the data in the first page and write the data into the second page, so as to realize the data transmission from the first page to the second page; and when the second page transmits data to the first page, adopting a JS technology to read the data in the second page and write the data into the first page, so as to realize the data transmission from the second page to the first page.

Description

Data interaction method, system, computer device and readable storage medium
Technical Field
The invention relates to the technical field of computers. And more particularly, to a data interaction method, system, computer device, and readable storage medium for data interaction.
Background
In general, data interaction among a plurality of systems requires different companies to develop together according to convention and cooperation. The main data interaction modes between the current application systems are as follows: a socket mode, an ftp/file sharing server mode, a database sharing data mode, a message mode and the like. The specific introduction is as follows:
1. socket mode
This approach is the simplest way of interaction. Is a typical c/s interaction pattern. A client and a server. The server provides services, and service access is carried out through the ip address and the port. And the client performs message interaction through a port designated by the connection server. Wherein the transport protocol may be a TCP/UDP protocol. The server and client agree upon a request message format and a response message format.
The Socket mode has the advantages that:
easy programming, and the java provides a plurality of frameworks at present, and encapsulates the details of the bottom-layer communication and the data transmission conversion.
The authority is easily controlled. And the transmitted data is encrypted through a transmission layer protocol https, so that the security is improved.
The universality is stronger, and no matter the client is a net architecture, java and python are all possible.
The Socket method has the following disadvantages:
The server and the client must work simultaneously, and when the server is unavailable, the whole data interaction is unavailable.
When the amount of transmitted data is large, the network bandwidth is severely occupied, which may cause connection timeout. So that the service becomes unreliable when data volumes are exchanged.
2. ftp/file sharing server mode
For interaction with large data volume, the file sharing server mode is most suitable and cannot be used for interaction with the file. The system A and the system B which need data interaction agree on the contents such as file server address, file naming rule, file content format and the like,
and carrying out data interaction by uploading the file to a file server. The mode is mostly adopted by the external data interaction of the current coal mine personnel positioning system and the safety monitoring system.
The file sharing server mode has the advantages that:
under the condition of large data volume, the data can be transmitted through files without overtime and occupying network bandwidth.
The scheme is simple, and concepts related to network transmission and network protocols are avoided.
Disadvantages of the file sharing server approach:
there must be a common file server where there is a risk. As files may be tampered with, deleted, or there is a compromise, etc.
The format of the file data and the file naming rule must be agreed
3. Database sharing data mode
The system A and the system B which need to exchange data through the same table connected with the same database server. The system A adds or modifies a piece of data, and the system B reads the data for data exchange.
The database sharing data mode has the advantages that:
compared with file mode transmission, the interaction is simpler because the same database is used.
Since the database provides actions to do so, such as updates, rollback, etc. The interaction mode is flexible, and reliable data exchange can be realized through a transaction mechanism of the database.
The disadvantages of the database sharing data mode are as follows:
when the number of the systems connected to the B is increased, the connection pool of the database is limited, so that the number of the connections allocated to each system is not large, and when the number of the systems is increased, the unavailable database connection can be caused
Typically, systems from two different companies will not open their databases to connect to each other, as this may have a security impact. At the same time, the contents of the fields of the sharing table need to be appointed and cannot be changed randomly.
4. message mode
Java Message Service (Java Message Service) is a typical implementation of Message data transmission.
The system A and the system B which need to exchange data through a message server. The system A sends the message to the message server, if the system B subscribes to the message sent by the system A, the message server will push the message to the B.
There are many open source jms message middleware on the market today that use this approach, such as ActiveMQ, OpenJMS, RabbitMQ, etc.
The message mode has the advantages that:
the interaction is simpler, and a plurality of mature products exist at present.
The message mode has the following defects:
both parties need to agree on a message format.
In summary, the data interaction between the different company systems requires the mutual development of two or more parties according to the agreement and the cooperation. Generally, in the project construction of the comprehensive scheduling management information system, data interaction with a plurality of manufacturer systems is required, the interface cost is high, and the data interaction in the traditional mode cannot meet the requirements of the current project construction.
Disclosure of Invention
In order to solve at least one of the technical problems mentioned in the background art, an object of the present invention is to provide a data interaction method, which comprises the following specific steps:
Integrating pages from different sources in the same page by using an iframe technology at a webpage interface end, wherein a first page in a first source address is marked under an iframe1 label, and a second page in a second source address is marked under an iframe2 label;
when the first page transmits data to the second page, adopting a JS technology to read the data in the first page and write the data into the second page, so as to realize the data transmission from the first page to the second page;
and when the second page transmits data to the first page, adopting a JS technology to read the data in the second page and write the data into the first page, so as to realize the data transmission from the second page to the first page.
Optionally, with the JS technique, reading the data in the first page and writing the data into the second page includes:
reading data in the iframe1 tag by using a JavaScript script, and writing the data into the iframe2 tag;
adopt the JS technique, read the data in the second page and write in first including:
and reading the data in the iframe2 tag and writing the data into the iframe1 tag by using a JavaScript script.
Optionally, the method further comprises: and realizing cross-domain of JS by using a Nginx reverse proxy technology.
Optionally, before the reading and writing the data in the first page to the second page and before the reading and writing the data in the second page to the first side of the page, the method further includes: and generating a configuration page for realizing data reading of the source page and data writing of the target page.
Optionally, the configuration page is configured to:
acquiring a source data file of a data source page;
acquiring input chart configuration information of a target page;
generating a chart matched with the source data file according to the chart configuration information;
and displaying the generated chart.
A second aspect of the present invention provides a data interaction system, which includes
The integration module is used for integrating pages from different sources into the same page by using an iframe technology at a webpage interface end, wherein a first page in a first source address is marked under an iframe1 label, and a second page in a second source address is marked under an iframe2 label;
the processing module is used for reading the data in the first page and writing the data into the second page when the first page transmits data to the second page, so that the data transmission from the first page to the second page is realized;
and when the second page transmits data to the first page, reading the data in the second page and writing the data into the first page, so as to realize the data transmission from the second page to the first page.
Optionally, the processing module is configured to:
when the first page transmits data to the second page, reading the data in the iframe1 tag and writing the data into the iframe2 tag by using a JavaScript script;
when the second page transmits data to the first page, the data in the iframe2 tag is read and written into the iframe1 tag by using a JavaScript script.
Optionally, the system further comprises:
the configuration module is used for acquiring a source data file of a data source page;
acquiring input chart configuration information of a target page;
generating a chart matched with the source data file according to the chart configuration information;
and displaying the generated chart.
A third aspect of the present invention provides a computer device, which includes a memory, a processor, and a computer program stored in the memory and executable on the processor, and when the processor executes the computer program, the data interaction method of the first aspect of the present invention is implemented.
A fourth aspect of the present invention provides a computer-readable storage medium, having stored therein instructions, which, when run on a computer, cause the computer to perform the data interaction method set forth in the first aspect of the present invention.
The invention has the following beneficial effects:
the data interaction method provided by the invention has the following advantages: 1. the cost is saved: the development cost is saved, the interface cost is saved, and the development period is shortened; 2. safe and reliable: the contents of processing flow, system model, safety protection, hardware configuration and the like of the original system are not changed; 3. the access process is simplified: the JS technology is adopted, so that the threshold is low, and the development is simple. The data is directly acquired from the page, the data is clear, and joint debugging of multiple companies is not needed when the data is accessed. There is no different understanding of the interface by the interface provider and callee. The influence caused by the difference of data and business processing logics provided by different companies does not exist; 4. convenient maintenance: the influence on the interface caused by project updating or system BUG repairing does not exist, if the web page is changed, the configuration can be modified, namely the corresponding relation between the primary key of the source page data and the primary key of the target page data is modified.
Drawings
In order to more clearly illustrate the technical solutions in the embodiments of the present invention, the drawings needed to be used in the description of the embodiments will be briefly introduced below, and it is obvious that the drawings in the following description are only some embodiments of the present invention, and it is obvious for those skilled in the art to obtain other drawings based on these drawings without creative efforts.
FIG. 1 shows a flow chart of a data interaction method of the present invention.
Fig. 2 shows a block diagram of the structure of implementing JS cross-domain by the Nginx reverse proxy according to an embodiment of the present invention.
FIG. 3 illustrates a configuration page generation diagram as set forth in one embodiment of the present invention.
Fig. 4 shows a schematic diagram of data interaction proposed by an embodiment of the present invention.
FIG. 5 is a block diagram of a data interaction system according to an embodiment of the present invention
Fig. 6 shows a block diagram of a computer device according to still another embodiment of the present invention.
Detailed Description
In order to make the technical solutions and advantages of the present invention more apparent, embodiments of the present invention will be described in detail with reference to the accompanying drawings.
It should be noted that the term [ the embodiment of the present invention ] does not limit the execution sequence of steps a to e, and for example, step c and step a ] can be executed in sequence
Fig. 1 is a flowchart illustrating an alternative implementation method of data interaction according to an embodiment of the present invention, where as shown in fig. 1, the method specifically includes:
integrating pages from different sources in the same page by using an iframe technology at a webpage interface end, wherein a first page in a first source address is marked under an iframe1 label, and a second page in a second source address is marked under an iframe2 label;
When the first page transmits data to the second page, adopting a JS technology to read the data in the first page and write the data into the second page, so as to realize the data transmission from the first page to the second page;
and when the second page transmits data to the first page, adopting a JS technology to read the data in the second page and write the data into the first page, so as to realize the data transmission from the second page to the first page.
Specifically, adopt the JS technique, read the data in the first page and write in the second page includes:
reading data in the iframe1 tag by using a JavaScript script, and writing the data into the iframe2 tag;
adopt the JS technique, read the data in the second page and write in first including:
and reading the data in the iframe2 tag and writing the data into the iframe1 tag by using a JavaScript script.
The JavaScript is a scripting language belonging to a Web, has been widely used for Web application development, and is often used to add various dynamic functions to a Web page to provide a smoother and more beautiful browsing effect for a user. Usually, the JavaScript script realizes the self function by being embedded in the HTML;
JavaScript is an interpreted scripting language (code is not pre-compiled); the cross-platform browser is mainly used for adding interaction behaviors to an HTML (application under a standard general markup language) page, can be directly embedded into the HTML page, but is written into a single js file to facilitate separation of structure and behaviors, has a cross-platform characteristic, can run under various platforms (such as Windows, Linux, Mac, Android, iOS and the like) under the support of most browsers, and can realize man-machine interaction of the web page.
The Javascript script language has its own basic data type, expression, arithmetic operator and basic program frame of program, as other languages. Javascript provides four basic data types and two special data types for processing data and text. And the variable provides a place for storing information, and the expression can complete more complex information processing.
Specifically, the method further comprises: and realizing cross-domain of JS by using a Nginx reverse proxy technology.
For the processing of cross-domain restriction, the application adopts the Nginx reverse proxy technology, forwards the request under the condition of not changing a target server and a system, realizes JS cross-domain, solves the problem of cross-domain restriction of the browser,
Nginx is a high-performance HTTP and reverse proxy web server, provides IMAP/POP3/SMTP service, has the advantages of high stability, rich function set, less memory occupation, strong concurrency capability, example configuration file and low system resource,
since nginnx is a service with very simple installation, very concise configuration file (also capable of supporting perl syntax) and very few bugs, loading nginnx in the application realizes JS cross-domain.
As shown in fig. 2, a JS script technology and nginx reverse proxy are adopted to forward a request without changing a target server and a target system, so that JS cross-domain is realized, and cross-domain limitation of a browser is solved.
Specifically, before the reading and writing the data in the first page to the second page and before the reading and writing the data in the second page to the first side of the page, the method further includes: and generating a configuration page for realizing data reading of the source page and data writing of the target page.
Specifically, the configuration page is configured to:
acquiring a source data file of a data source page;
acquiring input chart configuration information of a target page;
generating a chart matched with the source data file according to the chart configuration information;
And displaying the generated chart.
In an optional embodiment, as shown in fig. 3, a configuration page is used to set a corresponding relationship between a data primary key of a source page and a data primary key of a target page, so as to read data of the source page and write data of the target page, for example, "index description" in the figure may be used as a data primary key of the source page and the data primary key of the target page as an association point, a graph matched with a file of the source page is formed on the target page through the configuration page, and when data transmission is required, data of the source page is matched with the target page in a one-to-one correspondence manner.
In an optional embodiment, as shown in fig. 4, the basic principle of the method in the present invention is to create an inline frame containing one or more other systems through an < iframe > tag, embed a web page of the one or more other systems into a current page, read data in the < iframe > tag and write the data into the one or more other < iframe > tags by using a JS technique, and according to a configured page association relationship, read data from a web page in the one system and write the data into a web page of the other system, thereby finally completing data interaction between different systems.
One embodiment of the present invention provides a data interaction system as shown in FIG. 5, comprising
The integration module is used for integrating pages from different sources into the same page by using an iframe technology at a webpage interface end, wherein a first page in a first source address is marked under an iframe1 label, and a second page in a second source address is marked under an iframe2 label;
the processing module is used for reading the data in the first page and writing the data into the second page when the first page transmits data to the second page, so that the data transmission from the first page to the second page is realized;
and when the second page transmits data to the first page, reading the data in the second page and writing the data into the first page, so as to realize the data transmission from the second page to the first page.
In particular, the processing module is configured to:
when the first page transmits data to the second page, reading the data in the iframe1 tag and writing the data into the iframe2 tag by using a JavaScript script;
when the second page transmits data to the first page, the data in the iframe2 tag is read and written into the iframe1 tag by using a JavaScript script.
When the JavaScript script is used for realizing data transmission of different pages, the problem of cross-domain limitation of pages with different address sources is usually encountered, so that the Nginx reverse proxy service is configured in the processing module, a request is forwarded under the condition that a target server and a target system are not changed, the JS cross-domain is realized, and the problem of cross-domain limitation of the browser is solved.
Specifically, the system further comprises:
the configuration module is used for acquiring a source data file of a data source page;
acquiring input chart configuration information of a target page;
generating a chart matched with the source data file according to the chart configuration information;
and displaying the generated chart.
Yet another embodiment of the present invention provides a computer device, which includes a memory, a processor, and a computer program stored in the memory and executable on the processor, wherein the processor executes the computer program to implement the data interaction method. As shown in fig. 6, the computer apparatus includes a Central Processing Unit (CPU) that can perform various appropriate actions and processes according to a program stored in a Read Only Memory (ROM) or a program loaded from a storage section into a Random Access Memory (RAM). In the RAM, various programs and data necessary for the operation of the computer system are also stored. The CPU, ROM, and RAM are connected thereto via a bus. An input/output (I/O) interface is also connected to the bus.
An input section including a keyboard, a mouse, and the like; an output section including a speaker and the like such as a Liquid Crystal Display (LCD); a storage section including a hard disk and the like; and a communication section including a network interface card such as a LAN card, a modem, or the like. The communication section performs communication processing via a network such as the internet. The drive is also connected to the I/O interface as needed. A removable medium such as a magnetic disk, an optical disk, a magneto-optical disk, a semiconductor memory, or the like is mounted on the drive as necessary, so that a computer program read out therefrom is mounted into the storage section as necessary.
In particular, it is mentioned that the processes described in the above flowcharts can be implemented as computer software programs according to the present embodiment. For example, the present embodiments include a computer program product comprising a computer program tangibly embodied on a computer-readable medium, the computer program comprising program code for performing the method illustrated in the flow chart. In such an embodiment, the computer program may be downloaded and installed from a network via the communication section, and/or installed from a removable medium.
As another aspect, the present application also provides a computer-readable storage medium, which may be the computer-readable storage medium included in the apparatus in the above-described embodiments; or it may be a separate computer-readable storage medium not incorporated in the terminal. The computer readable storage medium stores one or more programs for use by one or more processors in performing the data interaction methods described in the present invention.
It should be understood that the above-mentioned embodiments of the present invention are only examples for clearly illustrating the present invention, and are not intended to limit the embodiments of the present invention, and it will be obvious to those skilled in the art that other variations or modifications may be made on the basis of the above description, and all embodiments may not be exhaustive, and all obvious variations or modifications may be included within the scope of the present invention.

Claims (10)

1. A method for data interaction, comprising:
integrating pages from different sources in the same page by using an iframe technology at a webpage interface end, wherein a first page in a first source address is marked under an iframe1 label, and a second page in a second source address is marked under an iframe2 label;
when the first page transmits data to the second page, adopting a JS technology to read the data in the first page and write the data into the second page, so as to realize the data transmission from the first page to the second page;
and when the second page transmits data to the first page, adopting a JS technology to read the data in the second page and write the data into the first page, so as to realize the data transmission from the second page to the first page.
2. The method of claim 1, wherein reading the data in the first page and writing to the second page using the JS technique comprises:
reading data in the iframe1 tag by using a JavaScript script, and writing the data into the iframe2 tag;
adopt the JS technique, read the data in the second page and write in first including:
and reading the data in the iframe2 tag and writing the data into the iframe1 tag by using a JavaScript script.
3. The method of claim 1, further comprising: and realizing cross-domain of JS by using a Nginx reverse proxy technology.
4. The method of claim 1, wherein before said reading the data in the first page and writing to the second page and before said reading the data in the second page and writing to the first side of the page, the method further comprises: and generating a configuration page for realizing data reading of the source page and data writing of the target page.
5. The method of claim 4, wherein the configuration page is configured to:
acquiring a source data file of a data source page;
acquiring input chart configuration information of a target page;
generating a chart matched with the source data file according to the chart configuration information;
and displaying the generated chart.
6. A data interaction system is characterized by comprising
The integration module is used for integrating pages from different sources into the same page by using an iframe technology at a webpage interface end, wherein a first page in a first source address is marked under an iframe1 label, and a second page in a second source address is marked under an iframe2 label;
the processing module is used for reading the data in the first page and writing the data into the second page when the first page transmits data to the second page, so that the data transmission from the first page to the second page is realized;
And when the second page transmits data to the first page, reading the data in the second page and writing the data into the first page, so as to realize the data transmission from the second page to the first page.
7. The system of claim 6, wherein the processing module is configured to:
when the first page transmits data to the second page, reading the data in the iframe1 tag and writing the data into the iframe2 tag by using a JavaScript script;
when the second page transmits data to the first page, the data in the iframe2 tag is read and written into the iframe1 tag by using a JavaScript script.
8. The system of claim 6, further comprising:
the configuration module is used for acquiring a source data file of a data source page;
acquiring input chart configuration information of a target page;
generating a chart matched with the source data file according to the chart configuration information;
and displaying the generated chart.
9. A computer device comprising a memory, a processor and a computer program stored on the memory and executable on the processor, characterized in that the processor implements the method according to any of claims 1-5 when executing the program.
10. A computer-readable storage medium having instructions stored thereon, which when run on a computer, cause the computer to perform the method of any one of claims 1-5.
CN202010481667.3A 2020-06-01 2020-06-01 Data interaction method, system, computer device and readable storage medium Pending CN111859233A (en)

Priority Applications (1)

Application Number Priority Date Filing Date Title
CN202010481667.3A CN111859233A (en) 2020-06-01 2020-06-01 Data interaction method, system, computer device and readable storage medium

Applications Claiming Priority (1)

Application Number Priority Date Filing Date Title
CN202010481667.3A CN111859233A (en) 2020-06-01 2020-06-01 Data interaction method, system, computer device and readable storage medium

Publications (1)

Publication Number Publication Date
CN111859233A true CN111859233A (en) 2020-10-30

Family

ID=72986023

Family Applications (1)

Application Number Title Priority Date Filing Date
CN202010481667.3A Pending CN111859233A (en) 2020-06-01 2020-06-01 Data interaction method, system, computer device and readable storage medium

Country Status (1)

Country Link
CN (1) CN111859233A (en)

Citations (4)

* Cited by examiner, † Cited by third party
Publication number Priority date Publication date Assignee Title
WO2015158304A1 (en) * 2014-04-18 2015-10-22 Tencent Technology (Shenzhen) Company Limited Data processing method and apparatus
WO2017215448A1 (en) * 2016-06-12 2017-12-21 阿里巴巴集团控股有限公司 Cross-application data sharing method and web browser
CN110300133A (en) * 2018-03-22 2019-10-01 财付通支付科技有限公司 Cross-domain data transmission method, apparatus, equipment and storage medium
CN111209557A (en) * 2019-12-24 2020-05-29 中移(杭州)信息技术有限公司 Cross-domain single sign-on method and device, electronic equipment and storage medium

Patent Citations (4)

* Cited by examiner, † Cited by third party
Publication number Priority date Publication date Assignee Title
WO2015158304A1 (en) * 2014-04-18 2015-10-22 Tencent Technology (Shenzhen) Company Limited Data processing method and apparatus
WO2017215448A1 (en) * 2016-06-12 2017-12-21 阿里巴巴集团控股有限公司 Cross-application data sharing method and web browser
CN110300133A (en) * 2018-03-22 2019-10-01 财付通支付科技有限公司 Cross-domain data transmission method, apparatus, equipment and storage medium
CN111209557A (en) * 2019-12-24 2020-05-29 中移(杭州)信息技术有限公司 Cross-domain single sign-on method and device, electronic equipment and storage medium

Similar Documents

Publication Publication Date Title
US10726195B2 (en) Filtered stylesheets
CN101697139B (en) Method, device and registry for remote procedure call
US7870482B2 (en) Web browser extension for simplified utilization of web services
US9888088B2 (en) Method and apparatus for accessing an enterprise resource planning system via a mobile device
US8584081B2 (en) Server side application integration framework
US10353750B2 (en) Discovery and exposure of transactional middleware server-based applications as consumable service endpoints
US20120173679A1 (en) Adaptation method, adapter and adapter system for network service communication
CN112347169A (en) PHP (hypertext preprocessor) framework based user request processing method and device and electronic equipment
US9652309B2 (en) Mediator with interleaved static and dynamic routing
CN110324209B (en) Micro-service system monitoring method and device, electronic equipment and computer readable medium
CN111800511A (en) Processing method, system, equipment and readable storage medium for synchronous login state
CN112346774A (en) Method and device for generating application installation package
CN111859233A (en) Data interaction method, system, computer device and readable storage medium
US20150294241A1 (en) Enterprise integration platform
CN114546683A (en) Service processing method, device, electronic equipment and storage medium
CN113992641A (en) Data processing method, device, equipment and storage medium
CN106844156A (en) WCF communication informations hold-up interception method in intelligent building comprehensive management platform system
CN111767498A (en) Method and device for realizing file information sharing
CN112100187A (en) Student learning data storage method and device based on VueJS
CN114202046B (en) Method, device, equipment and medium for generating two-dimension code based on SAP system
CN114844957B (en) Link message conversion method, device, equipment, storage medium and program product
CN113190367B (en) Cross-system data interaction method and device based on browser and electronic equipment
CN114840424A (en) Test case processing method, device, computer system and readable storage medium
CN114968209A (en) Page management method, system, electronic equipment and storage medium
CN116628379A (en) Visualized graph generation method and device, electronic equipment and storage medium

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