CN111259295A - Method and device for dynamically mounting webpage route - Google Patents

Method and device for dynamically mounting webpage route Download PDF

Info

Publication number
CN111259295A
CN111259295A CN202010019835.7A CN202010019835A CN111259295A CN 111259295 A CN111259295 A CN 111259295A CN 202010019835 A CN202010019835 A CN 202010019835A CN 111259295 A CN111259295 A CN 111259295A
Authority
CN
China
Prior art keywords
menu
page
source code
permission data
data
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
CN202010019835.7A
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.)
Guangdong 3vjia Information Technology Co Ltd
Original Assignee
Guangdong 3vjia Information Technology 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 Guangdong 3vjia Information Technology Co Ltd filed Critical Guangdong 3vjia Information Technology Co Ltd
Priority to CN202010019835.7A priority Critical patent/CN111259295A/en
Publication of CN111259295A publication Critical patent/CN111259295A/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
    • G06F9/00Arrangements for program control, e.g. control units
    • G06F9/06Arrangements for program control, e.g. control units using stored programs, i.e. using an internal store of processing equipment to receive or retain programs
    • G06F9/44Arrangements for executing specific programs
    • G06F9/445Program loading or initiating
    • G06F9/44521Dynamic linking or loading; Link editing at or after load time, e.g. Java class loading

Landscapes

  • Engineering & Computer Science (AREA)
  • Software Systems (AREA)
  • Theoretical Computer Science (AREA)
  • Physics & Mathematics (AREA)
  • General Engineering & Computer Science (AREA)
  • General Physics & Mathematics (AREA)
  • Databases & Information Systems (AREA)
  • Data Mining & Analysis (AREA)
  • Information Transfer Between Computers (AREA)

Abstract

The invention provides a method and a device for dynamically mounting webpage routes, and relates to the technical field of route mounting. The method comprises the following steps: generating a single-page project source code through a single-page scaffold; defining first menu authority data in an interface request file of a single-page project source code through an HTTP request, and defining second menu authority data in a routing file of the single-page project source code; judging whether the first menu authority data is matched with the second menu authority data; if yes, generating a menu page and dynamically mounting the webpage route. The method and the device for dynamically mounting the webpage route can generate the menu page and dynamically mount the webpage route only under the condition that the first menu authority data is matched with the second menu authority data, so that the technical effect of ensuring the network security is achieved.

Description

Method and device for dynamically mounting webpage route
Technical Field
The invention relates to the technical field of route mounting, in particular to a method and a device for dynamically mounting webpage routes.
Background
In the existing scheme that a user enters different system webpages, most of the system webpages are realized by the server side through webpage routing or realized by the browser side of webpage application through webpage routing. However, the two schemes respectively have the problems of frequent consumption of a large amount of http or https requests, page waiting, influence on user experience and easy leakage of system data.
Disclosure of Invention
In view of the above, the present invention provides a method and an apparatus for dynamically mounting a web page route to improve the technical problem of easily causing system data leakage.
In a first aspect, an embodiment of the present invention provides a method for dynamically mounting a web page route, where the method includes the following steps:
generating a single-page project source code through a single-page scaffold;
defining first menu permission data in an interface request file of the single-page project source code through an HTTP request, and defining second menu permission data in a routing file of the single-page project source code;
judging whether the first menu authority data is matched with the second menu authority data;
if yes, generating a menu page and dynamically mounting the webpage route.
With reference to the first aspect, an embodiment of the present invention provides a first possible implementation manner of the first aspect, where the step of defining, by an HTTP request, first menu permission data in an interface request file of a single-page item source code includes:
newly building an interface request file of a single-page project source code;
in the interface request file, first menu permission data owned by a current login user is defined and acquired from a server through an HTTP request in combination with an encapsulation function.
With reference to the first aspect, an embodiment of the present invention provides a second possible implementation manner of the first aspect, where the step of defining second menu permission data in the routing file of the single-page item source code includes:
newly building a routing file of a single-page project source code;
and writing second menu permission data into the routing file.
With reference to the first aspect, an embodiment of the present invention provides a third possible implementation manner of the first aspect, where the step of determining whether the first menu permission data and the second menu permission data are matched includes:
packaging a permission filtering function, and matching the first menu permission data with the second menu permission data;
judging whether the menu authority code of the first menu authority data is equal to the menu authority code of the second menu authority data;
and if so, determining that the first menu permission data and the second menu permission data are matched.
With reference to the first aspect, an embodiment of the present invention provides a fourth possible implementation manner of the first aspect, where the step of generating a menu page and dynamically mounting a web page route includes:
packaging a webpage application corresponding to a menu through a single-page scaffold to generate a menu page corresponding to the menu;
and dynamically mounting the webpage route by using an addRoutes function in an vue-router framework.
In a second aspect, an embodiment of the present invention further provides an apparatus for dynamically mounting a web page route, where the apparatus includes:
the source code generation module is used for generating single-page project source codes through a single-page scaffold;
the definition module is used for defining first menu permission data in an interface request file of the single-page project source code through an HTTP request and defining second menu permission data in a routing file of the single-page project source code;
the judging module is used for judging whether the first menu authority data is matched with the second menu authority data;
and the page generation and routing mounting module is used for generating a menu page and dynamically mounting the webpage routing if the webpage is the service page.
With reference to the second aspect, an embodiment of the present invention provides a first possible implementation manner of the second aspect, where the defining module is configured to:
newly building an interface request file of a single-page project source code;
in the interface request file, first menu permission data owned by a current login user is defined and acquired from a server through an HTTP request in combination with an encapsulation function.
With reference to the second aspect, an embodiment of the present invention provides a second possible implementation manner of the second aspect, where the defining module is configured to:
newly building a routing file of a single-page project source code;
and writing second menu permission data into the routing file.
In a third aspect, an embodiment of the present invention further provides a server, where the server includes: a processor and a memory, the memory storing computer-executable instructions executable by the processor, the processor executing the computer-executable instructions to implement the method described above.
In a fourth aspect, embodiments of the present invention also provide a computer-readable storage medium storing computer-executable instructions that, when invoked and executed by a processor, cause the processor to implement the method described above.
The embodiment of the invention has the following beneficial effects: according to the method and the device for dynamically mounting the webpage route, the single-page project source code is generated through the single-page scaffold, then the first menu authority data and the second menu authority data are defined, and the menu page is generated and the webpage route is dynamically mounted when the first menu authority data is matched with the second menu authority data. The method and the device for dynamically mounting the webpage route can generate the menu page and dynamically mount the webpage route only under the condition that the first menu authority data is matched with the second menu authority data, so that the technical effect of ensuring the network security is achieved.
Additional features and advantages of the invention will be set forth in the description which follows, and in part will be obvious from the description, or may be learned by the practice of the invention. The objectives and other advantages of the invention will be realized and attained by the structure particularly pointed out in the written description and claims hereof as well as the appended drawings.
In order to make the aforementioned objects, features and advantages of the present invention comprehensible, preferred embodiments accompanied with figures are described in detail below.
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, and it is obvious that the drawings in the following description are some embodiments of the present invention, and other drawings can be obtained by those skilled in the art without creative efforts.
Fig. 1 is a flowchart of a method for dynamically mounting a web page route according to an embodiment of the present invention;
fig. 2 is a flowchart of another method for dynamically mounting a web page route according to an embodiment of the present invention;
fig. 3 is a block diagram illustrating a structure of an apparatus for dynamically mounting a web page route according to an embodiment of the present invention;
fig. 4 is a schematic structural diagram of a server according to an embodiment of the present invention.
Detailed Description
In order to make the objects, technical solutions and advantages of the embodiments of the present invention clearer, the technical solutions of the present invention will be clearly and completely described below with reference to the accompanying drawings, and it is apparent that the described embodiments are some, but not all embodiments of the present invention. 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.
In the existing scheme that a user enters different system webpages, most of the system webpages are realized by the server side through webpage routing or realized by the browser side of webpage application through webpage routing. However, the two schemes respectively have the problems of frequent consumption of a large amount of http or https requests, page waiting, influence on user experience, and easy occurrence of security holes of system data leakage. Accordingly, embodiments of the present invention provide a method and an apparatus for dynamically mounting a web page route, so as to alleviate the above problem.
In order to facilitate understanding of the embodiment, a method for dynamically mounting a web page route disclosed in the embodiment of the present invention is first described in detail.
In one possible embodiment, the present invention provides a method for dynamically mounting a web page route. Fig. 1 is a flowchart of a method for dynamically mounting a web page route according to an embodiment of the present invention, where the method includes the following steps:
step S102: and generating a single-page project source code through the single-page scaffold.
The single-page scaffold is vue-cli, and is used for generating a single-page project source code and optimizing a packaged webpage source file, so that frequent http or http requests can be avoided when a corresponding URL (uniform resource locator) is accessed.
Step S104: and defining first menu permission data in an interface request file of the single-page project source code through an HTTP request, and defining second menu permission data in a routing file of the single-page project source code.
Among them, HTTP (HyperText Transfer Protocol) is a network transmission Protocol most widely used on the internet, all WWW files must comply with this standard, and the initial purpose of HTTP design is to provide a method for publishing and receiving HTML (HyperText Markup Language) pages.
Step S106: and judging whether the first menu authority data is matched with the second menu authority data.
Step S108: if yes, generating a menu page and dynamically mounting the webpage route.
The embodiment of the invention has the following beneficial effects: the embodiment of the invention provides a method for dynamically mounting a webpage route, which comprises the steps of generating a single-page project source code through a single-page scaffold, then defining first menu authority data and second menu authority data, and generating a menu page and dynamically mounting the webpage route when the first menu authority data is matched with the second menu authority data. The method and the device for dynamically mounting the webpage route can generate the menu page and dynamically mount the webpage route only under the condition that the first menu authority data is matched with the second menu authority data, so that the technical effect of ensuring the network security is achieved.
In practical use, in order to describe in more detail the processes of defining the first menu permission data and the second menu permission data, determining whether the first menu permission data and the second menu permission data are matched, and generating a menu page and dynamically mounting a web page route during matching, an embodiment of the present invention shows, in fig. 2, a flowchart of another method for dynamically mounting a web page route, which is provided by an embodiment of the present invention, and the method includes the following steps:
step S202: and generating a single-page project source code through the single-page scaffold.
Wherein the single page entry source code comprises a source code directory.
Step S204: and newly creating an interface request file of the source code of the single-page project.
Step S206: in the interface request file, first menu permission data owned by a current login user is defined and acquired from a server through an HTTP request in combination with an encapsulation function.
The first menu permission data is obtained by HTTP request, where the first menu permission data is, for example:
[{
menuCode:xxx
}]
step S208: and newly building a routing file of the source code of the single page project.
Step S210: and writing second menu permission data into the routing file.
The second menu authority data is mainly used for comparing with the first menu authority data after the HTTP request server is used, and the authority menu owned by the user is screened out.
Step S212: and packaging a permission filtering function, and matching the first menu permission data with the second menu permission data.
Step S214: and judging whether the menu authority code of the first menu authority data is equal to the menu authority code of the second menu authority data.
Step S216: and if so, determining that the first menu permission data and the second menu permission data are matched.
Step S218: and generating a menu page corresponding to the menu by packaging the webpage application corresponding to the menu through the single-page scaffold.
Step S220: and dynamically mounting the webpage route by using an addRoutes function in an vue-router framework.
In summary, according to the method and the device for dynamically mounting the web page routing, a single-page project source code is generated through a single-page scaffold, then a first menu permission data and a second menu permission data are defined, and when the first menu permission data is matched with the second menu permission data, a menu page is generated and the web page routing is dynamically mounted. The method and the device for dynamically mounting the webpage route can generate the menu page and dynamically mount the webpage route only under the condition that the first menu authority data is matched with the second menu authority data, so that the technical effect of ensuring the network security is achieved.
In another possible implementation manner, corresponding to the method for dynamically mounting a web page route provided in the foregoing implementation manner, an embodiment of the present invention further provides a device for dynamically mounting a web page route, and fig. 3 is a block diagram of a structure of the device for dynamically mounting a web page route provided in the embodiment of the present invention. As shown in fig. 3, the apparatus includes:
the source code generation module 301 is configured to generate a single-page project source code through a single-page scaffold;
a defining module 302, configured to define first menu permission data in an interface request file of the single-page item source code through an HTTP request, and define second menu permission data in a routing file of the single-page item source code;
a judging module 303, configured to judge whether the first menu permission data and the second menu permission data are matched;
and a page generation and routing mount module 304, configured to generate a menu page and dynamically mount a web page route if yes.
In actual use, the definition module 302 is configured to:
newly building an interface request file of a single-page project source code;
in the interface request file, first menu permission data owned by a current login user is defined and acquired from a server through an HTTP request in combination with an encapsulation function.
In actual use, the definition module 302 is configured to:
newly building a routing file of a single-page project source code;
and writing second menu permission data into the routing file.
In yet another possible implementation manner, an embodiment of the present invention further provides a server, and fig. 4 shows a schematic structural diagram of the server provided in the embodiment of the present invention, and referring to fig. 4, the server includes: a processor 400, a memory 401, a bus 402 and a communication interface 403, the processor 400, the memory 401, the communication interface 403 and the communication interface being connected by the bus 402; the processor 400 is used to execute executable modules, such as computer programs, stored in the memory 401.
Wherein the memory 401 stores computer-executable instructions that can be executed by the processor 400, the processor 400 executes the computer-executable instructions to implement the methods described above.
Further, the memory 401 may include a high-speed Random Access Memory (RAM) and may also include a non-volatile memory (non-volatile memory), such as at least one disk memory. The communication connection between the network element of the system and at least one other network element is realized through at least one communication interface 403 (which may be wired or wireless), and the internet, a wide area network, a local network, a metropolitan area network, and the like can be used.
Bus 402 can be an ISA bus, PCI bus, EISA bus, or the like. The bus may be divided into an address bus, a data bus, a control bus, etc. For ease of illustration, only one double-headed arrow is shown in FIG. 4, but that does not indicate only one bus or one type of bus.
The memory 401 is used for storing a program, and the processor 400 executes the program after receiving a program execution instruction, and the method for dynamically mounting the web page routing disclosed in any embodiment of the present invention may be applied to the processor 400, or implemented by the processor 400.
Further, processor 400 may be an integrated circuit chip having signal processing capabilities. In implementation, the steps of the above method may be performed by integrated logic circuits of hardware or instructions in the form of software in the processor 400. The Processor 400 may be a general-purpose Processor, and includes a Central Processing Unit (CPU), a Network Processor (NP), and the like; the device can also be a Digital Signal Processor (DSP), an Application Specific Integrated Circuit (ASIC), a Field-Programmable Gate Array (FPGA) or other Programmable logic device, a discrete Gate or transistor logic device, or a discrete hardware component. The various methods, steps and logic blocks disclosed in the embodiments of the present invention may be implemented or performed. A general purpose processor may be a microprocessor or the processor may be any conventional processor or the like. The steps of the method disclosed in connection with the embodiments of the present invention may be directly implemented by a hardware decoding processor, or implemented by a combination of hardware and software modules in the decoding processor. The software module may be located in ram, flash memory, rom, prom, or eprom, registers, etc. storage media as is well known in the art. The storage medium is located in the memory 401, and the processor 400 reads the information in the memory 401 and completes the steps of the method in combination with the hardware.
In yet another possible implementation, the embodiment of the present invention further provides a computer-readable storage medium storing computer-executable instructions, which, when invoked and executed by a processor, cause the processor to implement the method described above.
The device for dynamically mounting the webpage route provided by the embodiment of the invention has the same technical characteristics as the method for dynamically mounting the webpage route provided by the embodiment, so that the same technical problems can be solved, and the same technical effect can be achieved.
The computer program product of the method and the apparatus for dynamically mounting a web page route provided by the embodiment of the present invention includes a computer readable storage medium storing a program code, where instructions included in the program code may be used to execute the method described in the foregoing method embodiment, and specific implementation may refer to the method embodiment, and will not be described herein again.
It is clear to those skilled in the art that, for convenience and brevity of description, the specific working process of the apparatus described above may refer to the corresponding process in the foregoing method embodiment, and is not described herein again.
In addition, in the description of the embodiments of the present invention, unless otherwise explicitly specified or limited, the terms "mounted," "connected," and "connected" are to be construed broadly, e.g., as meaning either a fixed connection, a removable connection, or an integral connection; can be mechanically or electrically connected; they may be connected directly or indirectly through intervening media, or they may be interconnected between two elements. The specific meaning of the above terms in the present invention can be understood in specific cases for those skilled in the art.
The functions, if implemented in the form of software functional units and sold or used as a stand-alone product, may be stored in a computer readable storage medium. Based on such understanding, the technical solution of the present invention may be embodied in the form of a software product, which is stored in a storage medium and includes instructions for causing a computer device (which may be a personal computer, a server, or a network device) to execute all or part of the steps of the method according to the embodiments of the present invention. And the aforementioned storage medium includes: various media capable of storing program codes, such as a usb disk, a removable hard disk, a ReaD-Only Memory (ROM), a RanDom Access Memory (RAM), a magnetic disk, or an optical disk.
In the description of the present invention, it should be noted that the terms "center", "upper", "lower", "left", "right", "vertical", "horizontal", "inner", "outer", etc., indicate orientations or positional relationships based on the orientations or positional relationships shown in the drawings, and are only for convenience of description and simplicity of description, but do not indicate or imply that the device or element being referred to must have a particular orientation, be constructed and operated in a particular orientation, and thus, should not be construed as limiting the present invention. Furthermore, the terms "first," "second," and "third" are used for descriptive purposes only and are not to be construed as indicating or implying relative importance.
Finally, it should be noted that: although the present invention has been described in detail with reference to the foregoing embodiments, those skilled in the art will understand that the following embodiments are merely illustrative of the present invention, and not restrictive, and the scope of the present invention is not limited thereto: any person skilled in the art can modify or easily conceive the technical solutions described in the foregoing embodiments or equivalent substitutes for some technical features within the technical scope of the present disclosure; such modifications, changes or substitutions do not depart from the spirit and scope of the embodiments of the present invention, and they should be construed as being included therein. Therefore, the protection scope of the present invention shall be subject to the protection scope of the claims.

Claims (10)

1. A method for dynamically mounting a webpage route is characterized by comprising the following steps:
generating a single-page project source code through a single-page scaffold;
defining first menu permission data in an interface request file of the single-page project source code through an HTTP request, and defining second menu permission data in a routing file of the single-page project source code;
judging whether the first menu authority data is matched with the second menu authority data;
if yes, generating a menu page and dynamically mounting the webpage route.
2. The method according to claim 1, wherein the step of defining the first menu permission data in the interface request file of the single page item source code by HTTP request comprises:
newly building an interface request file of a single-page project source code;
in the interface request file, first menu permission data owned by a current login user is defined and acquired from a server through an HTTP request in combination with an encapsulation function.
3. The method of claim 1, wherein the step of defining second menu rights data in the routing file of the single page item source code comprises:
newly building a routing file of a single-page project source code;
and writing second menu permission data into the routing file.
4. The method of claim 1, wherein the step of determining whether the first menu permission data and the second menu permission data match comprises:
packaging a permission filtering function, and matching the first menu permission data with the second menu permission data;
judging whether the menu authority code of the first menu authority data is equal to the menu authority code of the second menu authority data;
and if so, determining that the first menu permission data and the second menu permission data are matched.
5. The method of claim 1, wherein the step of generating a menu page and dynamically mounting a web page route comprises:
packaging a webpage application corresponding to a menu through a single-page scaffold to generate a menu page corresponding to the menu;
and dynamically mounting the webpage route by using an addRoutes function in an vue-router framework.
6. An apparatus for dynamically mounting web page routing, the apparatus comprising:
the source code generation module is used for generating single-page project source codes through a single-page scaffold;
the definition module is used for defining first menu permission data in an interface request file of the single-page project source code through an HTTP request and defining second menu permission data in a routing file of the single-page project source code;
the judging module is used for judging whether the first menu authority data is matched with the second menu authority data;
and the page generation and routing mounting module is used for generating a menu page and dynamically mounting the webpage routing if the webpage is the service page.
7. The apparatus of claim 6, wherein the definition module is configured to:
newly building an interface request file of a single-page project source code;
in the interface request file, first menu permission data owned by a current login user is defined and acquired from a server through an HTTP request in combination with an encapsulation function.
8. The apparatus of claim 6, wherein the definition module is configured to:
newly building a routing file of a single-page project source code;
and writing second menu permission data into the routing file.
9. A server comprising a processor and a memory, the memory storing computer-executable instructions executable by the processor, the processor executing the computer-executable instructions to implement the method of any one of claims 1 to 5.
10. A computer-readable storage medium having stored thereon computer-executable instructions that, when invoked and executed by a processor, cause the processor to implement the method of any of claims 1 to 5.
CN202010019835.7A 2020-01-08 2020-01-08 Method and device for dynamically mounting webpage route Pending CN111259295A (en)

Priority Applications (1)

Application Number Priority Date Filing Date Title
CN202010019835.7A CN111259295A (en) 2020-01-08 2020-01-08 Method and device for dynamically mounting webpage route

Applications Claiming Priority (1)

Application Number Priority Date Filing Date Title
CN202010019835.7A CN111259295A (en) 2020-01-08 2020-01-08 Method and device for dynamically mounting webpage route

Publications (1)

Publication Number Publication Date
CN111259295A true CN111259295A (en) 2020-06-09

Family

ID=70945111

Family Applications (1)

Application Number Title Priority Date Filing Date
CN202010019835.7A Pending CN111259295A (en) 2020-01-08 2020-01-08 Method and device for dynamically mounting webpage route

Country Status (1)

Country Link
CN (1) CN111259295A (en)

Citations (4)

* 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
CN110109659A (en) * 2019-04-28 2019-08-09 广东三维家信息科技有限公司 A kind of system that realizing front end applications scaffold and server
CN110365640A (en) * 2019-05-30 2019-10-22 苏州浪潮智能科技有限公司 A kind of method and apparatus of control single-page application routing
CN110502712A (en) * 2019-08-09 2019-11-26 广东浪潮大数据研究有限公司 A kind of web menu generation method, device and server

Patent Citations (4)

* 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
CN110109659A (en) * 2019-04-28 2019-08-09 广东三维家信息科技有限公司 A kind of system that realizing front end applications scaffold and server
CN110365640A (en) * 2019-05-30 2019-10-22 苏州浪潮智能科技有限公司 A kind of method and apparatus of control single-page application routing
CN110502712A (en) * 2019-08-09 2019-11-26 广东浪潮大数据研究有限公司 A kind of web menu generation method, device and server

Similar Documents

Publication Publication Date Title
CN106126693B (en) Method and device for sending related data of webpage
CN108632219B (en) Website vulnerability detection method, detection server, system and storage medium
CN111104587A (en) Webpage display method and device and server
CN111107056A (en) Method and device for calling out-link URL (Uniform resource locator) resource and protocol conversion server
CN108897788B (en) Data crawling method and device, computer equipment and storage medium
CN104580074A (en) Logging method of client end application and corresponding server of logging method
TW201800962A (en) Webpage file sending method, webpage rendering method and device and webpage rendering system
CN111090449A (en) API service access method and device and electronic equipment
WO2014059865A1 (en) Method and apparatus for processing webpage
CN112104641B (en) Login form conversion method and device, storage medium and electronic equipment
CN112468550A (en) File downloading method and device and electronic equipment
CN111723314A (en) Webpage display method and device, electronic equipment and computer readable storage medium
CN113312633A (en) Website vulnerability scanning method, device, equipment and storage medium
CN111259295A (en) Method and device for dynamically mounting webpage route
CN117579308A (en) Authentication method and system based on ISTIO
CN111324832A (en) Method, system, device and medium for accessing website through short network address
CN109492146B (en) Method and device for preventing WEB crawler
CN108509229B (en) Window cross-domain control method, terminal equipment and computer readable storage medium
CN112333206B (en) Safety test method and device and electronic equipment
CN106411891B (en) File processing method and device, server and equipment
CN114640956B (en) Short message issuing method, device, system and electronic equipment
CN114900566A (en) Data communication method, device, electronic equipment and medium
CN110955856B (en) Webpage loading method and device, server and storage medium
EP3570522B1 (en) Webpage integrity monitoring
CN112379950B (en) Page calling method, device and server

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