CN111984357A - Resource loading method, device and equipment based on WebWorker and storage medium - Google Patents

Resource loading method, device and equipment based on WebWorker and storage medium Download PDF

Info

Publication number
CN111984357A
CN111984357A CN202010893542.1A CN202010893542A CN111984357A CN 111984357 A CN111984357 A CN 111984357A CN 202010893542 A CN202010893542 A CN 202010893542A CN 111984357 A CN111984357 A CN 111984357A
Authority
CN
China
Prior art keywords
target
resource
submenu
webworker
loading
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
CN202010893542.1A
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.)
Shenzhen Ping An Medical Health Technology Service Co Ltd
Original Assignee
Ping An Medical and Healthcare Management 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 Ping An Medical and Healthcare Management Co Ltd filed Critical Ping An Medical and Healthcare Management Co Ltd
Priority to CN202010893542.1A priority Critical patent/CN111984357A/en
Publication of CN111984357A publication Critical patent/CN111984357A/en
Pending legal-status Critical Current

Links

Images

Classifications

    • GPHYSICS
    • G06COMPUTING; CALCULATING OR COUNTING
    • G06FELECTRIC DIGITAL DATA PROCESSING
    • G06F9/00Arrangements for program control, e.g. control units
    • G06F9/06Arrangements for program control, e.g. control units using stored programs, i.e. using an internal store of processing equipment to receive or retain programs
    • G06F9/44Arrangements for executing specific programs
    • G06F9/451Execution arrangements for user interfaces
    • GPHYSICS
    • G06COMPUTING; CALCULATING OR COUNTING
    • G06FELECTRIC DIGITAL DATA PROCESSING
    • 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/44568Immediately runnable code
    • G06F9/44578Preparing or optimising for 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)
  • Human Computer Interaction (AREA)
  • Medical Treatment And Welfare Office Work (AREA)

Abstract

The invention relates to the technical field of big data, and discloses a resource loading method, a resource loading device, resource loading equipment and a resource loading storage medium based on WebWorker, which are applied to the field of intelligent medical treatment and are used for improving the loading speed of a medical service page of a medical enterprise and improving the user experience. The method comprises the following steps: acquiring a page access request of a target user; calling a preset user information interface according to the page access request to obtain a target user role and initial menu information; judging whether the role of the target user is the first login according to the initial menu information; if the role of the target user is the first login, determining the initial menu information as the target menu information; when the front-end program acquires the target menu information, generating a priority queue according to the target menu information, and importing submenus corresponding to each subsystem in the target menu information into the priority queue according to the priority sequence; and creating a target WebWorker instance object, and pre-downloading front-end resources of each subsystem according to the submenu sequence in the priority queue.

Description

Resource loading method, device and equipment based on WebWorker and storage medium
Technical Field
The invention relates to the field of data processing, in particular to a resource loading method, a resource loading device, resource loading equipment and a storage medium based on WebWorker.
Background
Medical enterprises usually need a plurality of internal management systems for support, and the page formed by aggregating the management systems is the portal page of the medical enterprise.
At present, the portal page of a medical enterprise mainly uses an iframe embedding mode, and the main defects of the iframe embedding mode are that front-end resources of all subsystems cannot be integrated and cannot be downloaded in advance, and a single-thread model is adopted by a browser, namely, all tasks can be completed on one thread only and only one task can be done at a time. The loading speed of the portal page of the medical enterprise is very important for the user experience.
At present, when a user opens a medical service page of a medical enterprise, the front-end resource of a subsystem needs to be downloaded first, and the medical service page can be opened after the downloading is completed, so that the time consumption is long, and the user experience is poor.
Disclosure of Invention
The invention provides a resource loading method, device, equipment and storage medium based on WebWorker, which are used for improving the loading speed of a medical service page of a medical enterprise and improving the user experience.
The first aspect of the embodiments of the present invention provides a resource loading method based on webWorker, including: acquiring a page access request of a target user, wherein the page access request is used for accessing a medical service page; calling a preset user information interface according to the page access request to obtain a target user role and initial menu information, wherein the initial menu information comprises submenus which can be accessed by the target user role, and one submenu corresponds to a resource request path and a resource updating time of a subsystem; judging whether the role of the target user is the first login according to the initial menu information; if the role of the target user is the first login, determining the initial menu information as target menu information; when a front-end program acquires the target menu information, generating a priority queue according to the target menu information, and importing submenus corresponding to each subsystem in the target menu information into the priority queue according to a priority order; and creating a target WebWorker instance object, and pre-downloading front-end resources of each subsystem according to the submenu sequence in the priority queue, wherein the front-end resources are used for loading the medical service page.
Optionally, in a first implementation manner of the first aspect of the embodiment of the present invention, the creating a target webWorker instance object, and pre-downloading front-end resources of each subsystem according to a submenu sequence in the priority queue, where the front-end resources are used to load the medical service page includes: creating a target WebWorker instance object, taking out a pre-download submenu from the priority queue, and judging whether cache data corresponding to the pre-download submenu exists in a local browser, wherein the pre-download submenu is a first ordered submenu in the priority queue; if the cache data corresponding to the pre-download submenu exists in the local browser, whether the resource updating time cached in the corresponding cache data is the same as the resource updating time corresponding to the pre-download submenu is judged; if the resource updating time cached in the corresponding cache data is the same as the resource updating time corresponding to the pre-download submenu, loading the front-end resource of the subsystem corresponding to the pre-download submenu into a front-end program, wherein the front-end resource is used for loading the medical service page; if the resource updating time cached in the corresponding cache data is different from the resource updating time corresponding to the pre-download submenu, downloading the front-end resource of the corresponding subsystem according to the resource request path corresponding to the pre-download submenu, storing the front-end resource of the subsystem in the cache, and loading the front-end resource of the subsystem into the front-end program; if the cache data corresponding to the pre-download submenu does not exist in the local browser, downloading the front-end resource of the corresponding subsystem according to the resource request path corresponding to the pre-download submenu, storing the front-end resource of the subsystem in the cache, and loading the front-end resource of the subsystem into the front-end program.
Optionally, in a second implementation manner of the first aspect of the embodiment of the present invention, after downloading the front-end resource of the corresponding subsystem according to the resource request path corresponding to the pre-download submenu, the method for loading a resource based on WebWorker further includes: and reading a next pre-download submenu from the priority queue, and downloading or reading the front-end resource of the corresponding subsystem according to the next pre-download submenu, wherein the next pre-download submenu is a submenu which is sequenced in the priority queue, until the front-end resources of the subsystems corresponding to all submenus in the priority queue are downloaded and loaded into the front-end program.
Optionally, in a third implementation manner of the first aspect of the embodiment of the present invention, after determining whether the target user role is first logged in according to the initial menu information and before generating a priority queue according to the target menu information, the method for loading resources based on WebWorker further includes: and if the target user role is not the first login, generating target menu information according to the historical access information of the target user role and the initial menu information.
Optionally, in a fourth implementation manner of the first aspect of the embodiment of the present invention, if the target user role is not a first login, generating target menu information according to the historical access information of the target user role and the initial menu information includes: if the target user role is not the first login, analyzing historical access information of the target user role to generate historical menu priority information corresponding to the target user role, wherein the historical menu priority information is used for indicating the historical menu click times of the target user role; and sorting all menu items in the initial menu information in a descending order according to the menu priority information to generate target menu information.
Optionally, in a fifth implementation manner of the first aspect of the embodiment of the present invention, after the creating a target WebWorker instance object and pre-downloading front-end resources of each subsystem according to a submenu sequence in the priority queue, where the front-end resources are used for loading the medical service page, the method for loading resources based on WebWorker further includes: when an operation instruction that a target user clicks a target submenu is obtained, target front-end resources of a subsystem corresponding to the target submenu are loaded, and a medical service page corresponding to the target front-end resources is loaded.
Optionally, in a sixth implementation manner of the first aspect of the embodiment of the present invention, when an operation instruction that a target user clicks a target sub-menu is obtained, loading a target front-end resource of a subsystem corresponding to the target sub-menu and loading a medical service page corresponding to the target front-end resource, includes: when an operation instruction of a target user for clicking a target submenu is obtained, judging whether a target front-end resource of a subsystem corresponding to the target submenu is loaded into a front-end program or not; if the target front-end resource of the subsystem corresponding to the target sub-menu is loaded into a front-end program, loading a medical service page corresponding to the target front-end resource; if the target front-end resource of the subsystem corresponding to the target submenu is not loaded into a front-end program, judging whether the menu being processed in the target WebWorker instance object is the target submenu; if the menu being processed in the target WebWorker instance object is the target submenu, waiting for the target WebWorker instance object to download the target front-end resource, loading the downloaded target front-end resource into a front-end program, and loading a medical service page corresponding to the target front-end resource; if the menu being processed in the target WebWorker instance object is not the target submenu, canceling the menu being processed in the target WebWorker instance object, adding the target submenu to the first position of the priority queue, and adding the canceled menu to the second position of the priority queue again; and when the target WebWorker instance object finishes the pre-downloading of the target front-end resource of the subsystem corresponding to the target submenu, loading the downloaded target front-end resource into a front-end program, and loading a medical service page corresponding to the target front-end resource.
A second aspect of the embodiments of the present invention provides a resource loading apparatus based on webWorker, including: the system comprises a request acquisition module, a page access module and a service processing module, wherein the request acquisition module is used for acquiring a page access request of a target user, and the page access request is used for accessing a medical service page; the interface calling module is used for calling a preset user information interface according to the page access request to obtain a target user role and initial menu information, wherein the initial menu information comprises submenus which can be accessed by the target user role, and one submenu corresponds to a resource request path and a resource updating time of one subsystem; the information judgment module is used for judging whether the target user role is the first login according to the initial menu information; the menu determining module is used for determining the initial menu information as target menu information if the role of the target user is the first login; the generation and introduction module is used for generating a priority queue according to the target menu information when the front-end program acquires the target menu information, and introducing submenus corresponding to the subsystems in the target menu information into the priority queue according to the priority sequence; and the creating and downloading module is used for creating a target WebWorker instance object and pre-downloading front-end resources of each subsystem according to the submenu sequence in the priority queue, wherein the front-end resources are used for loading the medical service page.
Optionally, in a first implementation manner of the second aspect of the embodiment of the present invention, the creating module is configured to: creating a target WebWorker instance object, taking out a pre-download submenu from the priority queue, and judging whether cache data corresponding to the pre-download submenu exists in a local browser, wherein the pre-download submenu is a first ordered submenu in the priority queue; if the cache data corresponding to the pre-download submenu exists in the local browser, whether the resource updating time cached in the corresponding cache data is the same as the resource updating time corresponding to the pre-download submenu is judged; if the resource updating time cached in the corresponding cache data is the same as the resource updating time corresponding to the pre-download submenu, loading the front-end resource of the subsystem corresponding to the pre-download submenu into a front-end program, wherein the front-end resource is used for loading the medical service page; if the resource updating time cached in the corresponding cache data is different from the resource updating time corresponding to the pre-download submenu, downloading the front-end resource of the corresponding subsystem according to the resource request path corresponding to the pre-download submenu, storing the front-end resource of the subsystem in the cache, and loading the front-end resource of the subsystem into the front-end program; if the cache data corresponding to the pre-download submenu does not exist in the local browser, downloading the front-end resource of the corresponding subsystem according to the resource request path corresponding to the pre-download submenu, storing the front-end resource of the subsystem in the cache, and loading the front-end resource of the subsystem into the front-end program.
Optionally, in a second implementation manner of the second aspect of the embodiment of the present invention, the creating and downloading module is further specifically configured to: and reading a next pre-download submenu from the priority queue, and downloading or reading the front-end resource of the corresponding subsystem according to the next pre-download submenu, wherein the next pre-download submenu is a submenu which is sequenced in the priority queue, until the front-end resources of the subsystems corresponding to all submenus in the priority queue are downloaded and loaded into the front-end program.
Optionally, in a third implementation manner of the second aspect of the embodiment of the present invention, the resource loading apparatus based on webWorker further includes: and the menu generating module is used for generating target menu information according to the historical access information of the target user role and the initial menu information if the target user role is not the first login.
Optionally, in a fourth implementation manner of the second aspect of the embodiment of the present invention, the menu generating module is specifically configured to: if the target user role is not the first login, analyzing historical access information of the target user role to generate historical menu priority information corresponding to the target user role, wherein the historical menu priority information is used for indicating the historical menu click times of the target user role; and sorting all menu items in the initial menu information in a descending order according to the menu priority information to generate target menu information.
Optionally, in a fifth implementation manner of the second aspect of the embodiment of the present invention, the resource loading apparatus based on webWorker further includes: and the page loading module is used for loading the target front-end resource of the subsystem corresponding to the target submenu and loading the medical service page corresponding to the target front-end resource when the operation instruction that the target user clicks the target submenu is obtained.
Optionally, in a sixth implementation manner of the second aspect of the embodiment of the present invention, the page loading module is specifically configured to: when an operation instruction of a target user for clicking a target submenu is obtained, judging whether a target front-end resource of a subsystem corresponding to the target submenu is loaded into a front-end program or not; if the target front-end resource of the subsystem corresponding to the target sub-menu is loaded into a front-end program, loading a medical service page corresponding to the target front-end resource; if the target front-end resource of the subsystem corresponding to the target submenu is not loaded into a front-end program, judging whether the menu being processed in the target WebWorker instance object is the target submenu; if the menu being processed in the target WebWorker instance object is the target submenu, waiting for the target WebWorker instance object to download the target front-end resource, loading the downloaded target front-end resource into a front-end program, and loading a medical service page corresponding to the target front-end resource; if the menu being processed in the target WebWorker instance object is not the target submenu, canceling the menu being processed in the target WebWorker instance object, adding the target submenu to the first position of the priority queue, and adding the canceled menu to the second position of the priority queue again; and when the target WebWorker instance object finishes the pre-downloading of the target front-end resource of the subsystem corresponding to the target submenu, loading the downloaded target front-end resource into a front-end program, and loading a medical service page corresponding to the target front-end resource.
A third aspect of the embodiments of the present invention provides a resource loading device based on webWorker, a memory and at least one processor, where the memory stores instructions, and the memory and the at least one processor are interconnected through a line; the at least one processor calls the instructions in the memory to enable the WebWorker-based resource loading device to execute the WebWorker-based resource loading method.
A fourth aspect of the embodiments of the present invention provides a computer-readable storage medium, where instructions are stored, and when the instructions are executed by a processor, the steps of the WebWorker-based resource loading method described in any one of the above embodiments are implemented.
According to the technical scheme provided by the embodiment of the invention, a page access request of a target user is obtained, and the page access request is used for accessing a medical service page; calling a preset user information interface according to the page access request to obtain a target user role and initial menu information, wherein the initial menu information comprises submenus which can be accessed by the target user role, and one submenu corresponds to a resource request path and a resource updating time of one subsystem; judging whether the role of the target user is the first login according to the initial menu information; if the role of the target user is the first login, determining the initial menu information as the target menu information; when the front-end program acquires the target menu information, generating a priority queue according to the target menu information, and importing submenus corresponding to each subsystem in the target menu information into the priority queue according to the priority sequence; and creating a target WebWorker instance object, and pre-downloading front-end resources of each subsystem according to the submenu sequence in the priority queue, wherein the front-end resources are used for loading a medical service page. According to the embodiment of the invention, the specified resources are downloaded in the Web Worker thread, and the front-end resources of the subsystem are downloaded in advance, so that the loading speed of the medical service page of the medical enterprise is increased, and the user experience is further improved.
Drawings
FIG. 1 is a schematic diagram of an embodiment of a resource loading method based on WebWorker in the embodiment of the present invention;
FIG. 2 is a schematic diagram of another embodiment of a resource loading method based on WebWorker in the embodiment of the present invention;
FIG. 3 is a schematic diagram of an embodiment of a resource loading apparatus based on WebWorker in the embodiment of the present invention;
FIG. 4 is a schematic diagram of another embodiment of a resource loading apparatus based on WebWorker in the embodiment of the present invention;
FIG. 5 is a schematic diagram of an embodiment of a resource loading device based on WebWorker in the embodiment of the present invention.
Detailed Description
The invention provides a resource loading method, device, equipment and storage medium based on WebWorker, which are used for improving the loading speed of a medical service page of a medical enterprise and improving the user experience.
In order to make the technical field of the invention better understand the scheme of the invention, the embodiment of the invention will be described in conjunction with the attached drawings in the embodiment of the invention.
The terms "first," "second," "third," "fourth," and the like in the description and in the claims, as well as in the drawings, if any, are used for distinguishing between similar elements and not necessarily for describing a particular sequential or chronological order. It will be appreciated that the data so used may be interchanged under appropriate circumstances such that the embodiments described herein may be practiced otherwise than as specifically illustrated or described herein. Furthermore, the terms "comprises," "comprising," or "having," and any variations thereof, are intended to cover non-exclusive inclusions, such that a process, method, system, article, or apparatus that comprises a list of steps or elements is not necessarily limited to those steps or elements expressly listed, but may include other steps or elements not expressly listed or inherent to such process, method, article, or apparatus.
Referring to fig. 1, a flowchart of a resource loading method based on WebWorker provided in an embodiment of the present invention specifically includes:
101. and acquiring a page access request of a target user, wherein the page access request is used for accessing a medical service page.
The server acquires a page access request of a target user, wherein the page access request is used for accessing a medical service page. The resource may be a javascript, css, or other resource file, which is not limited herein.
It can be understood that the execution subject of the present invention may be a resource loading device based on webWorker, or may be a server, and is not limited herein. The embodiment of the present invention is described by taking a server as an execution subject.
102. And calling a preset user information interface according to the page access request to obtain a target user role and initial menu information, wherein the initial menu information comprises sub-menus which can be accessed by the target user role, and one sub-menu corresponds to a resource request path and resource updating time of one subsystem.
The server calls a preset user information interface according to the page access request to obtain a target user role and initial menu information, wherein the initial menu information comprises sub-menus which can be accessed by the target user role, and one sub-menu corresponds to a resource request path and resource updating time of one subsystem. For example, the sub-menu may be an online inquiry service page or an online prescription service page, which is not limited herein.
The server may be provided with a role authority table, and the role authority table stores information and authority of each user role. For example, for a medical service page of a medical enterprise, a patient user corresponds to a general authority, a doctor user corresponds to a management authority, only part of content can be seen in initial menu information of the patient user, for example, labels such as department, department doctor, charging standard, and the like, and the initial menu information of the doctor user can also see other labels, for example, labels for entering, prescribing, determining a treatment plan, and the like of the patient information, in addition to the labels such as department, department doctor, charging standard, and the like.
103. And judging whether the role of the target user is the first login according to the initial menu information.
And the server judges whether the role of the target user is the first login according to the initial menu information.
It should be noted that, after each user logs in the healthcare page, the server assigns a user role to the user, for example, if the user a accesses the healthcare page for the first time, the user a assigns the user role a to be the first login, and the corresponding authority only has a common access authority, if the user a is an old user and does not access the healthcare page for the first time, the user role a corresponding to the user a is not the first login, the corresponding authority is a member access authority (i.e., a high-level access authority), and the number of subsystems that the member access authority can access (i.e., the healthcare page) is larger than that of the subsystems that the common access authority can access.
104. And if the role of the target user is the first login, determining the initial menu information as the target menu information.
If the role of the target user is the first login, the server determines the initial menu information as the target menu information, and the composition of the initial menu is not modified.
105. When the front-end program acquires the target menu information, a priority queue is generated according to the target menu information, and submenus corresponding to the subsystems in the target menu information are led into the priority queue according to the priority sequence.
When the front-end program acquires the target menu information, the server generates a priority queue according to the target menu information, and introduces submenus corresponding to each subsystem in the target menu information into the priority queue according to the priority order. One sub-menu corresponds to one medical service page, namely one sub-menu corresponds to one subsystem, and the subsystem corresponds to the front-end resource.
106. And creating a target WebWorker instance object, and pre-downloading front-end resources of each subsystem according to the submenu sequence in the priority queue, wherein the front-end resources are used for loading a medical service page.
And the server creates a target WebWorker instance object, and pre-downloads front-end resources of each subsystem according to the submenu sequence in the priority queue, wherein the front-end resources are used for loading the medical service page.
When a new Worker (i.e. WebWorker) is created, the code can run in a brand-new javascript environment (WorkerGlobalScope) and run completely isolated from the script for creating the Worker, and at this time, the script for creating the new Worker can be called a main thread, and the created new Worker can be called a sub-thread. WorkerGlobalScape is a global object of Worker, so that the WorkerGlobalScape comprises attributes of all core javascript global objects, such as JSON and the like, some attributes of window, XMLHttpRequest () and the like.
According to the embodiment of the invention, the specified resources are downloaded in the Web Worker thread, and the front-end resources of the subsystem are downloaded in advance, so that the loading speed of the medical service page of the medical enterprise is increased, and the user experience is further improved. And this scheme can be applied to in the wisdom medical treatment field to promote the construction in wisdom city.
Referring to fig. 2, another flowchart of a resource loading method based on WebWorker provided in an embodiment of the present invention specifically includes:
201. and acquiring a page access request of a target user, wherein the page access request is used for accessing a medical service page.
The server acquires a page access request of a target user, wherein the page access request is used for accessing a medical service page. The resource may be a javascript, css, or other resource file, which is not limited herein.
It can be understood that the execution subject of the present invention may be a resource loading device based on webWorker, or may be a server, and is not limited herein. The embodiment of the present invention is described by taking a server as an execution subject.
202. And calling a preset user information interface according to the page access request to obtain a target user role and initial menu information, wherein the initial menu information comprises sub-menus which can be accessed by the target user role, and one sub-menu corresponds to a resource request path and resource updating time of one subsystem.
The server calls a preset user information interface according to the page access request to obtain a target user role and initial menu information, wherein the initial menu information comprises sub-menus which can be accessed by the target user role, and one sub-menu corresponds to a resource request path and resource updating time of one subsystem. For example, the sub-menu may be an online inquiry service page or an online prescription service page, which is not limited herein.
The server may be provided with a role authority table, and the role authority table stores information and authority of each user role. For example, for a medical service page of a medical enterprise, a patient user corresponds to a general authority, a doctor user corresponds to a management authority, only part of content can be seen in initial menu information of the patient user, for example, labels such as department, department doctor, charging standard, and the like, and the initial menu information of the doctor user can also see other labels, for example, labels for entering, prescribing, determining a treatment plan, and the like of the patient information, in addition to the labels such as department, department doctor, charging standard, and the like.
203. And judging whether the role of the target user is the first login according to the initial menu information.
And the server judges whether the role of the target user is the first login according to the initial menu information.
It should be noted that, after each user logs in the healthcare page, the server assigns a user role to the user, for example, if the user a accesses the healthcare page for the first time, the user a assigns the user role a to be the first login, and the corresponding authority only has a common access authority, if the user a is an old user and does not access the healthcare page for the first time, the user role a corresponding to the user a is not the first login, the corresponding authority is a member access authority (i.e., a high-level access authority), and the number of subsystems that the member access authority can access (i.e., the healthcare page) is larger than that of the subsystems that the common access authority can access.
204. And if the target user role is not the first login, generating target menu information according to the historical access information and the initial menu information of the target user role.
Specifically, if the target user role is not the first login, the server analyzes historical access information of the target user role to generate historical menu priority information corresponding to the target user role, wherein the historical menu priority information is used for indicating the historical click times of the menu of the target user role; and the server performs descending order sorting on all menu items in the initial menu information according to the menu priority information to generate target menu information.
205. And if the role of the target user is the first login, determining the initial menu information as the target menu information.
If the role of the target user is the first login, the server determines the initial menu information as the target menu information, and the composition of the initial menu is not modified.
206. When the front-end program acquires the target menu information, a priority queue is generated according to the target menu information, and submenus corresponding to the subsystems in the target menu information are led into the priority queue according to the priority sequence.
When the front-end program acquires the target menu information, the server generates a priority queue according to the target menu information, and introduces submenus corresponding to each subsystem in the target menu information into the priority queue according to the priority order. One sub-menu corresponds to one medical service page, namely one sub-menu corresponds to one subsystem, and the subsystem corresponds to the front-end resource.
207. And creating a target WebWorker instance object, and pre-downloading front-end resources of each subsystem according to the submenu sequence in the priority queue, wherein the front-end resources are used for loading a medical service page.
Specifically, the server creates a target WebWorker instance object, takes out the pre-download submenu from the priority queue, and judges whether cache data corresponding to the pre-download submenu exists in the local browser, wherein the pre-download submenu is a first-ordered submenu in the priority queue; if the cache data corresponding to the pre-download submenu exists in the local browser, the server judges whether the resource updating time cached in the corresponding cache data is the same as the resource updating time corresponding to the pre-download submenu; if the resource updating time cached in the corresponding cache data is the same as the resource updating time corresponding to the pre-download submenu, the server loads the front-end resource of the subsystem corresponding to the pre-download submenu into a front-end program, wherein the front-end resource is used for loading a medical service page; if the resource updating time cached in the corresponding cache data is different from the resource updating time corresponding to the pre-download submenu, the server downloads the front-end resource of the corresponding subsystem according to the resource request path corresponding to the pre-download submenu, stores the front-end resource of the subsystem in the cache, and loads the front-end resource of the subsystem into a front-end program; if the cache data corresponding to the pre-download submenu does not exist in the local browser, the server downloads the front-end resource of the corresponding subsystem according to the resource request path corresponding to the pre-download submenu, stores the front-end resource of the subsystem in the cache, and loads the front-end resource of the subsystem into the front-end program.
Optionally, if the downloading of the corresponding front-end resource is completed by the pre-downloading submenu sorted in the priority queue, the server may further include:
and the server reads the next pre-download submenu from the priority queue, and downloads or reads the front-end resource of the corresponding subsystem according to the next pre-download submenu, wherein the next pre-download submenu is the submenu which is sequenced in the priority queue, until the front-end resources of the subsystems corresponding to all submenus in the priority queue are downloaded and loaded into the front-end program.
When a new Worker (i.e. WebWorker) is created, the code can run in a brand-new javascript environment (WorkerGlobalScope) and run completely isolated from the script for creating the Worker, and at this time, the script for creating the new Worker can be called a main thread, and the created new Worker can be called a sub-thread. WorkerGlobalScape is a global object of Worker, so that the WorkerGlobalScape comprises attributes of all core javascript global objects, such as JSON and the like, some attributes of window, XMLHttpRequest () and the like.
208. And when an operation instruction that the target user clicks the target submenu is obtained, loading the target front-end resource of the subsystem corresponding to the target submenu, and loading the medical service page corresponding to the target front-end resource.
Specifically, when an operation instruction that a target user clicks a target submenu is obtained, the server judges whether a target front-end resource of a subsystem corresponding to the target submenu is loaded into a front-end program; if the target front-end resource of the subsystem corresponding to the target sub-menu is loaded into the front-end program, the server loads a medical service page corresponding to the target front-end resource; if the target front-end resource of the subsystem corresponding to the target submenu is not loaded in the front-end program, the server judges whether the menu being processed in the target WebWorker instance object is the target submenu; if the menu being processed in the target WebWorker instance object is the target submenu, the server waits for the target WebWorker instance object to download the target front-end resource, loads the downloaded target front-end resource into the front-end program, and loads the medical service page corresponding to the target front-end resource; if the menu being processed in the target WebWorker instance object is not the target submenu, the server cancels the menu being processed in the target WebWorker instance object, adds the target submenu to the first position of the priority queue, and re-adds the cancelled menu to the second position of the priority queue; and when the target WebWorker instance object finishes the pre-downloading of the target front-end resource of the subsystem corresponding to the target submenu, the server loads the downloaded target front-end resource into the front-end program and loads the medical service page corresponding to the target front-end resource.
According to the embodiment of the invention, the specified resources are downloaded in the Web Worker thread, and the front-end resources of the subsystem are downloaded in advance, so that the loading speed of the medical service page of the medical enterprise is increased, and the user experience is further improved. And this scheme can be applied to in the wisdom medical treatment field to promote the construction in wisdom city.
In the above description of the resource loading method based on WebWorker in the embodiment of the present invention, the following description of the resource loading device based on WebWorker in the embodiment of the present invention refers to fig. 3, and an embodiment of the resource loading device based on WebWorker in the embodiment of the present invention includes:
a request obtaining module 301, configured to obtain a page access request of a target user, where the page access request is used to access a medical service page;
an interface calling module 302, configured to call a preset user information interface according to the page access request, so as to obtain a target user role and initial menu information, where the initial menu information includes submenus that can be accessed by the target user role, and one submenu corresponds to a resource request path and a resource update time of one subsystem;
an information determining module 303, configured to determine whether the target user role is first logged in according to the initial menu information;
a menu determining module 304, configured to determine the initial menu information as target menu information if the target user role is first login;
a generating and importing module 305, configured to generate a priority queue according to the target menu information when the front-end program obtains the target menu information, and import the submenus corresponding to the subsystems in the target menu information into the priority queue according to a priority order;
and the creating and downloading module 306 is used for creating a target WebWorker instance object and pre-downloading front-end resources of each subsystem according to the submenu sequence in the priority queue, wherein the front-end resources are used for loading the medical service page.
According to the embodiment of the invention, the specified resources are downloaded in the Web Worker thread, and the front-end resources of the subsystem are downloaded in advance, so that the loading speed of the medical service page of the medical enterprise is increased, and the user experience is further improved. And this scheme can be applied to in the wisdom medical treatment field to promote the construction in wisdom city.
Referring to fig. 4, another embodiment of the resource loading apparatus based on WebWorker in the embodiment of the present invention includes:
a request obtaining module 301, configured to obtain a page access request of a target user, where the page access request is used to access a medical service page;
an interface calling module 302, configured to call a preset user information interface according to the page access request, so as to obtain a target user role and initial menu information, where the initial menu information includes submenus that can be accessed by the target user role, and one submenu corresponds to a resource request path and a resource update time of one subsystem;
an information determining module 303, configured to determine whether the target user role is first logged in according to the initial menu information;
a menu determining module 304, configured to determine the initial menu information as target menu information if the target user role is first login;
a generating and importing module 305, configured to generate a priority queue according to the target menu information when the front-end program obtains the target menu information, and import the submenus corresponding to the subsystems in the target menu information into the priority queue according to a priority order;
and the creating and downloading module 306 is used for creating a target WebWorker instance object and pre-downloading front-end resources of each subsystem according to the submenu sequence in the priority queue, wherein the front-end resources are used for loading the medical service page.
Optionally, the creating and downloading module 306 is specifically configured to:
creating a target WebWorker instance object, taking out a pre-download submenu from the priority queue, and judging whether cache data corresponding to the pre-download submenu exists in a local browser, wherein the pre-download submenu is a first ordered submenu in the priority queue; if the cache data corresponding to the pre-download submenu exists in the local browser, whether the resource updating time cached in the corresponding cache data is the same as the resource updating time corresponding to the pre-download submenu is judged; if the resource updating time cached in the corresponding cache data is the same as the resource updating time corresponding to the pre-download submenu, loading the front-end resource of the subsystem corresponding to the pre-download submenu into a front-end program, wherein the front-end resource is used for loading the medical service page; if the resource updating time cached in the corresponding cache data is different from the resource updating time corresponding to the pre-download submenu, downloading the front-end resource of the corresponding subsystem according to the resource request path corresponding to the pre-download submenu, storing the front-end resource of the subsystem in the cache, and loading the front-end resource of the subsystem into the front-end program; if the cache data corresponding to the pre-download submenu does not exist in the local browser, downloading the front-end resource of the corresponding subsystem according to the resource request path corresponding to the pre-download submenu, storing the front-end resource of the subsystem in the cache, and loading the front-end resource of the subsystem into the front-end program.
Optionally, the creating and downloading module 306 is further specifically configured to:
and reading a next pre-download submenu from the priority queue, and downloading or reading the front-end resource of the corresponding subsystem according to the next pre-download submenu, wherein the next pre-download submenu is a submenu which is sequenced in the priority queue, until the front-end resources of the subsystems corresponding to all submenus in the priority queue are downloaded and loaded into the front-end program.
Optionally, the resource loading apparatus based on WebWorker further includes:
and a menu generating module 307, configured to generate target menu information according to the historical access information of the target user role and the initial menu information if the target user role is not first logged in.
Optionally, the menu generating module 307 is specifically configured to:
if the target user role is not the first login, analyzing historical access information of the target user role to generate historical menu priority information corresponding to the target user role, wherein the historical menu priority information is used for indicating the historical menu click times of the target user role; and sorting all menu items in the initial menu information in a descending order according to the menu priority information to generate target menu information.
Optionally, the resource loading apparatus based on WebWorker further includes:
the page loading module 308 is configured to, when an operation instruction that a target user clicks a target sub-menu is obtained, load a target front-end resource of a subsystem corresponding to the target sub-menu, and load a medical service page corresponding to the target front-end resource.
Optionally, the page loading module 308 is specifically configured to:
when an operation instruction of a target user for clicking a target submenu is obtained, judging whether a target front-end resource of a subsystem corresponding to the target submenu is loaded into a front-end program or not; if the target front-end resource of the subsystem corresponding to the target sub-menu is loaded into a front-end program, loading a medical service page corresponding to the target front-end resource; if the target front-end resource of the subsystem corresponding to the target submenu is not loaded into a front-end program, judging whether the menu being processed in the target WebWorker instance object is the target submenu; if the menu being processed in the target WebWorker instance object is the target submenu, waiting for the target WebWorker instance object to download the target front-end resource, loading the downloaded target front-end resource into a front-end program, and loading a medical service page corresponding to the target front-end resource; if the menu being processed in the target WebWorker instance object is not the target submenu, canceling the menu being processed in the target WebWorker instance object, adding the target submenu to the first position of the priority queue, and adding the canceled menu to the second position of the priority queue again; and when the target WebWorker instance object finishes the pre-downloading of the target front-end resource of the subsystem corresponding to the target submenu, loading the downloaded target front-end resource into a front-end program, and loading a medical service page corresponding to the target front-end resource.
According to the embodiment of the invention, the specified resources are downloaded in the Web Worker thread, and the front-end resources of the subsystem are downloaded in advance, so that the loading speed of the medical service page of the medical enterprise is increased, and the user experience is further improved. And this scheme can be applied to in the wisdom medical treatment field to promote the construction in wisdom city.
Fig. 3 to fig. 4 describe the resource loading device based on WebWorker in the embodiment of the present invention in detail from the perspective of the modular functional entity, and the resource loading device based on WebWorker in the embodiment of the present invention is described in detail from the perspective of hardware processing.
Fig. 5 is a schematic structural diagram of a WebWorker-based resource loading apparatus 500 according to an embodiment of the present invention, which may have a relatively large difference due to different configurations or performances, and may include one or more processors (CPUs) 510 (e.g., one or more processors) and a memory 520, one or more storage media 530 (e.g., one or more mass storage devices) for storing applications 533 or data 532. Memory 520 and storage media 530 may be, among other things, transient or persistent storage. The program stored on the storage medium 530 may include one or more modules (not shown), each of which may include a series of instructions operating on the webWorker-based resource loading device 500. Still further, the processor 510 may be configured to communicate with the storage medium 530 to execute a series of instruction operations in the storage medium 530 on the webWorker-based resource loading device 500.
The WebWorker-based resource loader 500 may also include one or more power supplies 540, one or more wired or wireless network interfaces 550, one or more input-output interfaces 560, and/or one or more operating systems 531, such as Windows Server, Mac OS X, Unix, Linux, FreeBSD, and so forth. Those skilled in the art will appreciate that the WebWorker-based resource loading device architecture shown in fig. 5 does not constitute a limitation of the WebWorker-based resource loading device and may include more or fewer components than shown, or some components in combination, or a different arrangement of components.
The present invention also provides a computer-readable storage medium, which may be a non-volatile computer-readable storage medium, and which may also be a volatile computer-readable storage medium, having stored therein instructions, which, when run on a computer, cause the computer to perform the steps of the WebWorker-based resource loading method.
It is clear to those skilled in the art that, for convenience and brevity of description, the specific working processes of the above-described systems, apparatuses and units may refer to the corresponding processes in the foregoing method embodiments, and are not described herein again.
The integrated unit, if implemented in the form of a software functional unit 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.
The above-mentioned embodiments are only used for illustrating the technical solutions of the present invention, and not for limiting the same; although the present invention has been described in detail with reference to the foregoing embodiments, it will be understood by those of ordinary skill in the art that: the technical solutions described in the foregoing embodiments may still be modified, or some technical features may be equivalently replaced; and such modifications or substitutions do not depart from the spirit and scope of the corresponding technical solutions of the embodiments of the present invention.

Claims (10)

1. A resource loading method based on WebWorker is characterized by comprising the following steps:
acquiring a page access request of a target user, wherein the page access request is used for accessing a medical service page;
calling a preset user information interface according to the page access request to obtain a target user role and initial menu information, wherein the initial menu information comprises submenus which can be accessed by the target user role, and one submenu corresponds to a resource request path and a resource updating time of a subsystem;
judging whether the role of the target user is the first login according to the initial menu information;
if the role of the target user is the first login, determining the initial menu information as target menu information;
when a front-end program acquires the target menu information, generating a priority queue according to the target menu information, and importing submenus corresponding to each subsystem in the target menu information into the priority queue according to a priority order;
and creating a target WebWorker instance object, and pre-downloading front-end resources of each subsystem according to the submenu sequence in the priority queue, wherein the front-end resources are used for loading the medical service page.
2. The method for loading resources based on WebWorker of claim 1, wherein the creating of the target WebWorker instance object and the pre-downloading of the front-end resources of each subsystem according to the submenu sequence in the priority queue, the front-end resources being used for loading the medical service page, comprises:
creating a target WebWorker instance object, taking out a pre-download submenu from the priority queue, and judging whether cache data corresponding to the pre-download submenu exists in a local browser, wherein the pre-download submenu is a first ordered submenu in the priority queue;
if the cache data corresponding to the pre-download submenu exists in the local browser, whether the resource updating time cached in the corresponding cache data is the same as the resource updating time corresponding to the pre-download submenu is judged;
if the resource updating time cached in the corresponding cache data is the same as the resource updating time corresponding to the pre-download submenu, loading the front-end resource of the subsystem corresponding to the pre-download submenu into a front-end program, wherein the front-end resource is used for loading the medical service page;
if the resource updating time cached in the corresponding cache data is different from the resource updating time corresponding to the pre-download submenu, downloading the front-end resource of the corresponding subsystem according to the resource request path corresponding to the pre-download submenu, storing the front-end resource of the subsystem in the cache, and loading the front-end resource of the subsystem into the front-end program;
if the cache data corresponding to the pre-download submenu does not exist in the local browser, downloading the front-end resource of the corresponding subsystem according to the resource request path corresponding to the pre-download submenu, storing the front-end resource of the subsystem in the cache, and loading the front-end resource of the subsystem into the front-end program.
3. The method for loading resources based on webWorker of claim 2, wherein after downloading the front-end resources of the corresponding subsystem according to the resource request path corresponding to the pre-download submenu, the method for loading resources based on webWorker further comprises:
and reading a next pre-download submenu from the priority queue, and downloading or reading the front-end resource of the corresponding subsystem according to the next pre-download submenu, wherein the next pre-download submenu is a submenu which is sequenced in the priority queue, until the front-end resources of the subsystems corresponding to all submenus in the priority queue are downloaded and loaded into the front-end program.
4. The method for loading resources based on webWorker of claim 1, wherein after determining whether the target user role is first logged on according to the initial menu information and before generating a priority queue according to the target menu information, the method for loading resources based on webWorker further comprises:
and if the target user role is not the first login, generating target menu information according to the historical access information of the target user role and the initial menu information.
5. The WebWorker-based resource loading method of claim 4, wherein if the target user role is not first login, generating target menu information according to historical access information of the target user role and the initial menu information comprises:
if the target user role is not the first login, analyzing historical access information of the target user role to generate historical menu priority information corresponding to the target user role, wherein the historical menu priority information is used for indicating the historical menu click times of the target user role;
and sorting all menu items in the initial menu information in a descending order according to the menu priority information to generate target menu information.
6. The method for loading resources based on WebWorker as claimed in any one of claims 1-5, wherein after the creating of the target WebWorker instance object and the pre-downloading of the front-end resources of each subsystem according to the submenu order in the priority queue, the method for loading resources based on WebWorker further comprises:
when an operation instruction that a target user clicks a target submenu is obtained, target front-end resources of a subsystem corresponding to the target submenu are loaded, and a medical service page corresponding to the target front-end resources is loaded.
7. The resource loading method based on the webWorker according to claim 6, wherein when the operation instruction that the target user clicks the target submenu is obtained, loading the target front-end resource of the subsystem corresponding to the target submenu and loading the medical service page corresponding to the target front-end resource comprises:
when an operation instruction of a target user for clicking a target submenu is obtained, judging whether a target front-end resource of a subsystem corresponding to the target submenu is loaded into a front-end program or not;
if the target front-end resource of the subsystem corresponding to the target sub-menu is loaded into a front-end program, loading a medical service page corresponding to the target front-end resource;
if the target front-end resource of the subsystem corresponding to the target submenu is not loaded into a front-end program, judging whether the menu being processed in the target WebWorker instance object is the target submenu;
if the menu being processed in the target WebWorker instance object is the target submenu, waiting for the target WebWorker instance object to download the target front-end resource, loading the downloaded target front-end resource into a front-end program, and loading a medical service page corresponding to the target front-end resource;
if the menu being processed in the target WebWorker instance object is not the target submenu, canceling the menu being processed in the target WebWorker instance object, adding the target submenu to the first position of the priority queue, and adding the canceled menu to the second position of the priority queue again;
and when the target WebWorker instance object finishes the pre-downloading of the target front-end resource of the subsystem corresponding to the target submenu, loading the downloaded target front-end resource into a front-end program, and loading a medical service page corresponding to the target front-end resource.
8. A resource loading device based on WebWorker is characterized by comprising the following components:
the system comprises a request acquisition module, a page access module and a service processing module, wherein the request acquisition module is used for acquiring a page access request of a target user, and the page access request is used for accessing a medical service page;
the interface calling module is used for calling a preset user information interface according to the page access request to obtain a target user role and initial menu information, wherein the initial menu information comprises submenus which can be accessed by the target user role, and one submenu corresponds to a resource request path and a resource updating time of one subsystem;
the information judgment module is used for judging whether the target user role is the first login according to the initial menu information;
the menu determining module is used for determining the initial menu information as target menu information if the role of the target user is the first login;
the generation and introduction module is used for generating a priority queue according to the target menu information when the front-end program acquires the target menu information, and introducing submenus corresponding to the subsystems in the target menu information into the priority queue according to the priority sequence;
and the creating and downloading module is used for creating a target WebWorker instance object and pre-downloading front-end resources of each subsystem according to the submenu sequence in the priority queue, wherein the front-end resources are used for loading the medical service page.
9. The resource loading device based on the WebWorker is characterized by comprising the following components: a memory having instructions stored therein and at least one processor, the memory and the at least one processor interconnected by a line;
the at least one processor invokes the instructions in the memory to cause the WebWorker-based resource loading device to perform the WebWorker-based resource loading method of any of claims 1-7.
10. A computer-readable storage medium, characterized in that the computer-readable storage medium stores instructions that, when executed by a processor, implement the WebWorker-based resource loading method of any one of claims 1 to 7.
CN202010893542.1A 2020-08-31 2020-08-31 Resource loading method, device and equipment based on WebWorker and storage medium Pending CN111984357A (en)

Priority Applications (1)

Application Number Priority Date Filing Date Title
CN202010893542.1A CN111984357A (en) 2020-08-31 2020-08-31 Resource loading method, device and equipment based on WebWorker and storage medium

Applications Claiming Priority (1)

Application Number Priority Date Filing Date Title
CN202010893542.1A CN111984357A (en) 2020-08-31 2020-08-31 Resource loading method, device and equipment based on WebWorker and storage medium

Publications (1)

Publication Number Publication Date
CN111984357A true CN111984357A (en) 2020-11-24

Family

ID=73439750

Family Applications (1)

Application Number Title Priority Date Filing Date
CN202010893542.1A Pending CN111984357A (en) 2020-08-31 2020-08-31 Resource loading method, device and equipment based on WebWorker and storage medium

Country Status (1)

Country Link
CN (1) CN111984357A (en)

Cited By (6)

* Cited by examiner, † Cited by third party
Publication number Priority date Publication date Assignee Title
CN112612552A (en) * 2020-12-31 2021-04-06 五八有限公司 Application program resource loading method and device, electronic equipment and readable storage medium
CN112685058A (en) * 2020-12-22 2021-04-20 北京达佳互联信息技术有限公司 Pre-download method of application program update package, related device and storage medium
CN114546520A (en) * 2022-01-27 2022-05-27 浪潮通用软件有限公司 Initialization method, equipment and medium based on software as a service (SaaS) application
CN114629896A (en) * 2022-04-19 2022-06-14 高途教育科技集团有限公司 File downloading method and device, electronic equipment and readable storage medium
CN115225717A (en) * 2022-07-19 2022-10-21 杭州安恒信息技术股份有限公司 Request management method, device, equipment and storage medium
WO2023206845A1 (en) * 2022-04-27 2023-11-02 青岛海尔科技有限公司 Method and apparatus for creating page menu, and storage medium and electronic apparatus

Citations (2)

* Cited by examiner, † Cited by third party
Publication number Priority date Publication date Assignee Title
CN107256155A (en) * 2017-06-02 2017-10-17 深圳天珑无线科技有限公司 Menu adaptation method, server and the readable storage medium storing program for executing of background management system
CN110287432A (en) * 2019-06-28 2019-09-27 北京金山安全软件有限公司 Network information processing method and device and electronic equipment

Patent Citations (2)

* Cited by examiner, † Cited by third party
Publication number Priority date Publication date Assignee Title
CN107256155A (en) * 2017-06-02 2017-10-17 深圳天珑无线科技有限公司 Menu adaptation method, server and the readable storage medium storing program for executing of background management system
CN110287432A (en) * 2019-06-28 2019-09-27 北京金山安全软件有限公司 Network information processing method and device and electronic equipment

Cited By (8)

* Cited by examiner, † Cited by third party
Publication number Priority date Publication date Assignee Title
CN112685058A (en) * 2020-12-22 2021-04-20 北京达佳互联信息技术有限公司 Pre-download method of application program update package, related device and storage medium
CN112685058B (en) * 2020-12-22 2024-06-04 北京达佳互联信息技术有限公司 Pre-downloading method of application program update package, related equipment and storage medium
CN112612552A (en) * 2020-12-31 2021-04-06 五八有限公司 Application program resource loading method and device, electronic equipment and readable storage medium
CN114546520A (en) * 2022-01-27 2022-05-27 浪潮通用软件有限公司 Initialization method, equipment and medium based on software as a service (SaaS) application
CN114546520B (en) * 2022-01-27 2023-06-09 浪潮通用软件有限公司 Initializing method, device and medium based on SaaS application
CN114629896A (en) * 2022-04-19 2022-06-14 高途教育科技集团有限公司 File downloading method and device, electronic equipment and readable storage medium
WO2023206845A1 (en) * 2022-04-27 2023-11-02 青岛海尔科技有限公司 Method and apparatus for creating page menu, and storage medium and electronic apparatus
CN115225717A (en) * 2022-07-19 2022-10-21 杭州安恒信息技术股份有限公司 Request management method, device, equipment and storage medium

Similar Documents

Publication Publication Date Title
CN111984357A (en) Resource loading method, device and equipment based on WebWorker and storage medium
US7216007B2 (en) System and method for providing direct web access to controllers in a process control environment
US7810075B2 (en) Common trace files
CN101169733B (en) Method and system for providing operation system service based on strategy
US9218177B2 (en) Techniques to optimize upgrade tasks
CN101533417A (en) A method and system for realizing ETL scheduling
US20080168459A1 (en) Method and System for Performing Inventory Scan
WO2005062571A2 (en) System and method for allocating server resources
CN103678506B (en) The method, apparatus and browser of loading application programs shortcut in a browser
EP2153344A1 (en) Dynamically loading scripts
US9178746B2 (en) Browser-based fetch of external libraries
US8661444B2 (en) Creation of flexible workflows using artifacts
EP1880286A1 (en) Data processing network
Li et al. DLHub: Simplifying publication, discovery, and use of machine learning models in science
GB2509635A (en) Update control apparatus, update control program, and update control method
CN108399331B (en) Application process trial method and system
CN102929920A (en) Web-information-extraction-based monitoring method and device for software updating information
US11188364B1 (en) Compilation strategy for a sharable application snapshot
US10540150B2 (en) Composable context menus
CN111416801A (en) Mail processing method and device
US8713524B2 (en) Memory management configuration
US8290984B2 (en) Configuration deployment management
CN104715202A (en) Hidden process detecting method and hidden process detecting device in virtual machine
Vivian et al. Rapid and efficient analysis of 20,000 RNA-seq samples with Toil
CN103544271B (en) Load Image in a kind of browser the method and apparatus for processing window

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
TA01 Transfer of patent application right
TA01 Transfer of patent application right

Effective date of registration: 20220525

Address after: 518000 China Aviation Center 2901, No. 1018, Huafu Road, Huahang community, Huaqiang North Street, Futian District, Shenzhen, Guangdong Province

Applicant after: Shenzhen Ping An medical and Health Technology Service Co.,Ltd.

Address before: Room 12G, Area H, 666 Beijing East Road, Huangpu District, Shanghai 200001

Applicant before: PING AN MEDICAL AND HEALTHCARE MANAGEMENT Co.,Ltd.