WO2022062835A1 - 事件响应装置、方法、电子设备及存储介质 - Google Patents

事件响应装置、方法、电子设备及存储介质 Download PDF

Info

Publication number
WO2022062835A1
WO2022062835A1 PCT/CN2021/114970 CN2021114970W WO2022062835A1 WO 2022062835 A1 WO2022062835 A1 WO 2022062835A1 CN 2021114970 W CN2021114970 W CN 2021114970W WO 2022062835 A1 WO2022062835 A1 WO 2022062835A1
Authority
WO
WIPO (PCT)
Prior art keywords
subclass
instruction
layer
data processing
target instruction
Prior art date
Application number
PCT/CN2021/114970
Other languages
English (en)
French (fr)
Inventor
王少飞
万月亮
火一莽
Original Assignee
北京锐安科技有限公司
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 北京锐安科技有限公司 filed Critical 北京锐安科技有限公司
Publication of WO2022062835A1 publication Critical patent/WO2022062835A1/zh

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/957Browsing optimisation, e.g. caching or content distillation
    • YGENERAL TAGGING OF NEW TECHNOLOGICAL DEVELOPMENTS; GENERAL TAGGING OF CROSS-SECTIONAL TECHNOLOGIES SPANNING OVER SEVERAL SECTIONS OF THE IPC; TECHNICAL SUBJECTS COVERED BY FORMER USPC CROSS-REFERENCE ART COLLECTIONS [XRACs] AND DIGESTS
    • Y02TECHNOLOGIES OR APPLICATIONS FOR MITIGATION OR ADAPTATION AGAINST CLIMATE CHANGE
    • Y02DCLIMATE CHANGE MITIGATION TECHNOLOGIES IN INFORMATION AND COMMUNICATION TECHNOLOGIES [ICT], I.E. INFORMATION AND COMMUNICATION TECHNOLOGIES AIMING AT THE REDUCTION OF THEIR OWN ENERGY USE
    • Y02D10/00Energy efficient computing, e.g. low power processors, power management or thermal management

Definitions

  • the embodiments of the present application relate to the technical field of data processing, for example, to an event response apparatus, method, electronic device, and storage medium.
  • web browsers mainly interact with web servers and obtain web pages through the HyperText Transfer Protocol (HTTP).
  • HTTP HyperText Transfer Protocol
  • a web page can include multiple documents, and each document is obtained from the server.
  • the browser correctly displays the information on the web page by responding to the events transmitted from the browser kernel.
  • the type and content of the current event are identified in the event, for example, the user clicks the button to create a new article, the mouse hovers to display the menu, and the title of the currently browsed webpage, etc.
  • the browser extracts the required information and then responds Action or update the information on the interface to notify the user.
  • the present application provides an event response device, method, electronic device and storage medium, so as to realize fast processing of browser events and improve the response efficiency of browser events.
  • An embodiment of the present application provides an event response device, which includes an instruction binder, a basic view layer, a basic logic layer, a basic data processing layer, a view subclass, a logic subclass, and a data processing subclass, wherein the The view subclass is inherited from the basic view layer, the logic subclass is inherited from the basic logic layer, and the data processing subclass is inherited from the basic data processing layer;
  • the browser event is bound to the initial instruction;
  • the view subclass is set to encapsulate the business behavior data of the browser event into the initial instruction, forming a target instruction, and issue the target instruction;
  • the logical subclass is set to perform logical verification on the received target instruction, and issue the successfully verified target instruction;
  • the data processing subclass is set to receive The verified successful target instruction is processed.
  • An embodiment of the present application further provides an event response method, which is applied to the event response apparatus according to any of the above embodiments, and the method includes: when a browser event is triggered, based on an instruction binder The browser event is bound to the initial instruction; the business behavior data of the browser event is encapsulated into the initial instruction based on the view subclass to form the target instruction of the browser event, wherein the view subclass inherits in the basic view layer; perform logical verification on the target instruction based on a logical subclass, wherein the logical subclass inherits from the basic logic layer; process the successfully verified target instruction based on the data processing subclass.
  • An embodiment of the present application further provides an electronic device, the electronic device includes: one or more processors; a storage device configured to store one or more programs, when the one or more programs are stored by the one or more programs A plurality of processors execute, so that the one or more processors implement the event response method provided by any embodiment of the present application.
  • Embodiments of the present application further provide a computer-readable storage medium, on which a computer program is stored, and when the program is executed by a processor, implements the event response method provided by any embodiment of the present application.
  • FIG. 1 is a schematic structural diagram of an event response apparatus provided in Embodiment 1 of the present application.
  • FIG. 2 is a flowchart of an event response method provided in Embodiment 2 of the present application.
  • FIG. 3 is a schematic structural diagram of an electronic device provided in Embodiment 3 of the present application.
  • FIG. 1 is a schematic structural diagram of an event response apparatus in Embodiment 1 of the present application. This embodiment can be applied to the case of responding to browser events.
  • the apparatus includes: an instruction binder 110, a basic view layer 120, a basic logic layer 130, a basic data processing layer 140, a view subclass 150, a logic subclass 160 and a data processing subclass 170, wherein , the view subclass 150 is inherited from the basic view layer 120, the logic subclass 160 is inherited from the basic logic layer 130, and the data processing subclass 170 is inherited from the basic data processing layer 140;
  • the The instruction binder 110 is configured to bind the browser event with the initial instruction when the browser event is triggered;
  • the view subclass 150 is configured to encapsulate the business behavior data of the browser event into In the initial instruction, the target command of the browser event is formed, and the target command is issued;
  • the logic subclass 160 is set to perform logical verification on the received target command, and issue the successfully verified target command ;
  • the browser includes a browser shell part and a browser kernel part.
  • the shell part includes the front-end interface display part of the browser, such as the address bar, menu, favorites, etc.; the browser kernel is set to handle browser events generated by user browsing, such as web page requests, including page download, page display and rendering functions. .
  • the monitoring module for monitoring the browser event acquires the identifier of the browser event.
  • the identifier of the browser event may be a preset unique identifier of multiple browser events, and the form of the identifier is not limited, for example, it may be an event name, a hash value, or a string formed of numbers, characters, and the like.
  • the unique identifier is generated based on event parameters in the browser event, where the event parameters may include, but are not limited to, business behavior type, business behavior status, and business behavior data.
  • an Angular component can be used to implement the setting of the browser event identifier.
  • Basic Angular components include Cascading Style Sheets (CSS) files, HyperText Mark-up Language (HTML) files, and TypeScript files.
  • CSS Cascading Style Sheets
  • HTML HyperText Mark-up Language
  • TypeScript files TypeScript files.
  • the browser correctly displays the information on the web page by responding to the browser event transmitted from the browser kernel.
  • the event includes the type and content of the current event, such as the user clicking the button to create a new article, the mouse hovering display menu, and the title of the currently browsed webpage.
  • the browser event is triggered, that is, when the browser event is transmitted from the kernel, the initial instruction bound to the browser event is determined based on the business behavior type in the browser event, and the unique identifier of the browser event is associated with the initial instruction to bind.
  • the business behavior type in the browser event is the behavior type generated by the browser according to the user's trigger instruction.
  • the types of business behaviors include but are not limited to types such as page download, page display, page update, and page closing.
  • the instruction binder 110 binds the browser event with the initial instruction that successfully matches the business behavior type in the browser event.
  • the instruction binder 110 may add the unique identifier of the browser event to the initial instruction. The specified field of the directive.
  • the event response device is configured with a basic view layer 120, a basic logic layer 130, and a basic data processing layer 140, wherein the basic view layer 120 has an instruction encapsulation function, the basic logic layer 130 has an instruction verification function, and a basic data processing layer.
  • Layer 140 has data processing functions.
  • the number of view subclasses 150, the number of logical subclasses 160, and the number of data processing subclasses 170 is at least one, which may be created in advance, or may be created in real time when a browser event is detected.
  • the view subclass 150 encapsulates the business behavior data of the browser event into the initial instruction to form the target instruction of the browser event.
  • the business behavior data includes but is not limited to content data such as the content downloaded from the page, the content displayed on the page, and the content updated on the page.
  • the view subclass 150 also broadcasts and sends the target instruction through the instruction scheduling bus.
  • the instruction scheduling bus is respectively connected with the view subclass 150, the logic subclass 160 and the data processing subclass 170 in sequence, and is set to issue the target instruction.
  • the instruction dispatch bus is connected to each view subclass 150, each logical subclass 160, and each data processing subclass Class 170 is connected to achieve accurate issuance of target instructions.
  • the instruction scheduling bus pre-stores the mapping relationship between the instruction and the logic subclass 160 .
  • the target instruction can be sent to the corresponding logical subclass 160 for logical verification.
  • the target instruction type is type A
  • the logical subclass of type A is determined according to the pre-stored mapping relationship between the instruction and the logical subclass, and the target instruction is sent from the view subclass to the logical subclass.
  • the target instruction type may be the same as the business behavior type of the browser event.
  • the logical subclass 160 is a logical subclass inherited from the basic logic layer 130 and set to handle different business behavior types.
  • the content of the logical verification performed by the logical subclass 160 on the target instruction includes: judging the processing level and the flow state of the received target instruction.
  • the processing layer includes the view layer, the logic layer and the data processing layer.
  • the flow state includes the flow order from the view layer to the logic layer to the data processing layer, and the flow order from the data processing layer to the logic layer and then to the view layer.
  • the target instruction is in the logic layer, and the flow state satisfies the flow sequence of the view layer, the logic layer, and the data processing layer, it is determined that the logic verification is successful.
  • the successfully verified target instruction is issued through the instruction scheduling bus.
  • the instruction scheduling bus sends the successfully verified target instruction to the corresponding data processing subclass 170 for a response strategy.
  • the type of the successfully verified target instruction is type A
  • the data processing subclass of type A is determined according to the pre-stored mapping relationship between the instruction and the data processing subclass, and the successfully verified target instruction is converted from the logical subclass.
  • the class is sent to the data processing subclass corresponding to the A type for response processing of behavior data.
  • the number of the logical subclasses 160 and the number of the data processing subclasses 170 are at least one, so that multiple browser events can be processed in parallel, which shortens the response cycle of the browser events.
  • the data processing subclass 170 receives the successfully verified target command, determines a response policy of the target command based on the configuration information of the target command, and executes the target command based on the response policy.
  • the configuration information of the target instruction can be pre-configured and stored in the data processing subclass 170, or a preset time interval can be set in the data processing subclass 170 during processing, or it can be carried by the specified field of the target instruction, This embodiment does not limit this.
  • the configuration information of the target instruction may be different configuration identifiers, for example, a local identifier and a cloud identifier.
  • the response strategy includes caching the business behavior data in the target instruction to the data storage module; or, sending the business behavior data in the target instruction to the background data interface.
  • the data processing subclass caches the business behavior data in the target instruction to the data storage module; when the configuration information is a motion identifier, the data processing subclass sends the business behavior data in the target instruction to Background data interface. Caching the business behavior data in the target instruction to the data storage module can enable the browser to independently respond to and process browser events without relying on background data, shorten the response time of browser events, and improve the response efficiency of browser events. .
  • An embodiment of the present application provides an event response device, by which when a browser event is triggered, the browser event is bound to an initial command based on an instruction binder; the browser event is bound based on a view subclass
  • the business behavior data is encapsulated into the initial instruction to form the target instruction of the browser event, wherein the view subclass inherits from the basic view layer; logical verification is performed on the target instruction based on the logical subclass, wherein all the The logic subclass inherits from the basic logic layer; the data processing subclass determines the response strategy of the target command according to the configuration information of the target command, and executes the target command based on the response strategy.
  • the device solves the problem of inflexible page operation in the related art, realizes fast processing of browser events, and improves the response efficiency of browser events.
  • FIG. 2 is a flowchart of an event response method in Embodiment 2 of the present application. This embodiment may be applicable to the case of responding to a browser event, and the method may be executed by an event response apparatus, and the event response apparatus may be implemented in software and/or hardware. As shown in Figure 1, the method includes the following steps.
  • S220 Encapsulate the business behavior data of the browser event into the initial instruction based on a view subclass to form a target instruction of the browser event, where the view subclass inherits from the base view layer.
  • S240 Determine a response policy of the target instruction based on the configuration information of the target instruction based on the data processing subclass, and execute the target instruction based on the response policy.
  • a unique identifier is configured in the browser event.
  • the binding of the browser event and the initial command by the command-based binder includes: determining the initial command bound to the browser event based on the business behavior type in the browser event, Bind the unique identifier of the browser event with the initial instruction.
  • the event response method further includes: issuing the target instruction based on the pre-stored mapping relationship between the instruction and the logical subclass, and the pre-stored mapping relationship between the instruction and the data processing subclass;
  • the instruction scheduling bus is sequentially connected with the view subclass, the logic subclass and the data processing subclass, and is configured to issue the target command.
  • the number of view subclasses, the number of logical subclasses, and the number of data processing subclasses is at least one.
  • logically verifying the target instruction based on the logical subclass includes: judging the processing level and the flow state where the received target instruction is located, wherein the processing level includes a view layer, a logic layer, and a flow state. Data processing layer; when the target instruction is in the basic logic layer and the flow state satisfies the flow sequence of the view layer, the logic layer and the data processing layer, it is determined that the logic verification is successful.
  • the response strategy includes caching the business behavior data in the target instruction to a data storage module; or, sending the business behavior data in the target instruction to a background data interface.
  • the event response method further includes: creating at least one view subclass inherited from the basic view layer; creating at least one logical subclass inherited from the basic logic layer and corresponding to at least one business behavior type; Create at least one data processing subclass that inherits from the basic data processing layer and corresponds to at least one business behavior type.
  • the embodiment of the present application provides an event response method, by which when a browser event is triggered, the browser event is bound with an initial instruction based on an instruction binder;
  • the business behavior data is encapsulated into the initial instruction to form the target instruction of the browser event, wherein the view subclass inherits from the basic view layer; logical verification is performed on the target instruction based on the logical subclass, wherein all the The logic subclass is inherited from the basic logic layer;
  • the data processing subclass determines the response strategy of the target command according to the configuration information of the target command, and executes the target command based on the response strategy.
  • the method solves the problem of inflexible page operation in the related art, realizes fast processing of browser events, and improves the response efficiency of browser events.
  • FIG. 3 is a schematic structural diagram of an electronic device in Embodiment 3 of the present application.
  • FIG. 3 shows a block diagram of an exemplary electronic device 312 suitable for use in implementing embodiments of the present application.
  • the electronic device 312 shown in FIG. 3 is only an example, and should not impose any limitations on the functions and scope of use of the embodiments of the present application.
  • electronic device 312 takes the form of a general-purpose computing device.
  • Components of electronic device 312 may include, but are not limited to, one or more processors or processing units 316, system memory 328, and a bus 318 that connects various system components, including system memory 328 and processing unit 316.
  • the bus 318 represents one or more of a variety of bus structures, including a memory bus or memory controller, a peripheral bus, a graphics acceleration port, a processor, or a local bus using any of a variety of bus structures.
  • these architectures include, but are not limited to, Industry Standard Architecture (ISA) bus, Micro Channel Architecture (MCA) bus, enhanced ISA bus, Video Electronics Standards Association (Video Electronics Standards Association) Standards Association, VESA) local bus and Peripheral Component Interconnect (PCI) bus.
  • Electronic device 312 includes a variety of computer system readable media. These media can be any available media that can be accessed by electronic device 312, including both volatile and nonvolatile media, removable and non-removable media.
  • System memory 328 may include computer system readable media in the form of volatile memory, such as random access memory (RAM) 330 and/or cache memory 332 .
  • Electronic device 312 may also include other removable/non-removable, volatile/non-volatile computer system storage media.
  • storage system 334 may be configured to read and write to non-removable, non-volatile magnetic media (not shown in FIG. 3, commonly referred to as a "hard drive").
  • storage system 334 may provide disk drives configured to read and write to removable non-volatile magnetic disks (eg, "floppy disks"), as well as removable non-volatile optical disks (eg, optical disks) (Compact Disc-Read-Only Memory, CD-ROM), Digital Video Disc (Digital Video Disc-Read-Only Memory, DVD-ROM) or other optical media) optical disc drive for reading and writing.
  • each drive may be connected to bus 318 through one or more data media interfaces.
  • the memory 328 may include at least one program product having a set (eg, at least one) of program modules configured to perform the functions of various embodiments of the present application.
  • Program modules 336 generally perform the functions and/or methods of the embodiments described herein.
  • the electronic device 312 may also communicate with one or more external devices 314 (eg, a keyboard, pointing device, display 324, etc.), with one or more devices that enable a user to interact with the electronic device 312, and/or with Any device (eg, network card, modem, etc.) that enables the electronic device 312 to communicate with one or more other computing devices. Such communication may take place through Input/Output (I/O) interface 322 . Also, the electronic device 312 may communicate with one or more networks (such as a Local Area Network (LAN), a Wide Area Network (WAN), and/or a public network, such as the Internet) through a network adapter 320. As shown in FIG.
  • LAN Local Area Network
  • WAN Wide Area Network
  • public network such as the Internet
  • network adapter 320 communicates with other modules of electronic device 312 via bus 318 . It should be understood that, although not shown in FIG. 3, other hardware and/or software modules may be used in conjunction with electronic device 312, including but not limited to: microcode, device drivers, redundant processing units, external disk drive arrays, disk arrays (Redundant Arrays of Independent Disks, RAID) systems, tape drives, and data backup storage systems, etc.
  • the processing unit 316 executes a variety of functional applications and data processing by running the program stored in the system memory 328, for example, to implement the event response method provided by the embodiment of the present application, the method includes: when a browser event is triggered, based on the The instruction binder binds the browser event with the initial instruction; encapsulates the business behavior data of the browser event into the initial instruction based on the view subclass to form the target instruction of the browser event, wherein , the view subclass inherits from the basic view layer; logically verifies the target instruction based on the logical subclass, wherein the logical subclass follows the basic logic layer; based on the data processing subclass, according to the target The configuration information of the instruction determines a response policy of the target instruction, and the target instruction is executed based on the response policy.
  • the fourth embodiment of the present application also provides a computer-readable storage medium on which a computer program is stored.
  • the event response method provided by the embodiment of the present application is implemented, and the method includes: when a browser When the event is triggered, the browser event is bound with the initial command based on the command binder; the business behavior data of the browser event is encapsulated into the initial command based on the view subclass to form the browser
  • the target instruction of the event wherein the view subclass inherits from the basic view layer; the logic verification is performed on the target instruction based on the logical subclass, wherein the logical subclass inherits from the basic logic layer; based on the data processing subclass
  • the class determines a response policy of the target instruction according to the configuration information of the target instruction, and executes the target instruction based on the response policy.
  • the computer storage medium of the embodiments of the present application may adopt any combination of one or more computer-readable media.
  • the computer-readable medium may be a computer-readable signal medium or a computer-readable storage medium.
  • the computer-readable storage medium can be, for example, but not limited to, an electrical, magnetic, optical, electromagnetic, infrared, or semiconductor system, apparatus or device, or a combination of any of the above.
  • Examples (non-exhaustive list) of computer-readable storage media include: electrical connections having one or more wires, portable computer disks, hard disks, RAM, Read-Only Memory (ROM), erasable Programmable read-only memory (Electrically Programmable Read-Only Memory, EPROM) or flash memory, optical fiber, portable CD-ROM, optical storage device, magnetic storage device, or any suitable combination of the above.
  • a computer-readable storage medium can be any tangible medium that contains or stores a program that can be used by or in conjunction with an instruction execution system, apparatus, or device.
  • a computer-readable signal medium may include a propagated data signal in baseband or as part of a carrier wave with computer-readable program code embodied thereon. Such propagated data signals may take a variety of forms, including but not limited to electromagnetic signals, optical signals, or any suitable combination of the foregoing.
  • a computer-readable signal medium can also be any computer-readable medium other than a computer-readable storage medium that can transmit, propagate, or transport the program for use by or in connection with the instruction execution system, apparatus, or device .
  • the program code embodied on the computer readable medium may be transmitted by any suitable medium, including but not limited to wireless, wire, optical fiber cable, radio frequency (RF), etc., or any suitable combination of the foregoing.
  • suitable medium including but not limited to wireless, wire, optical fiber cable, radio frequency (RF), etc., or any suitable combination of the foregoing.
  • Computer program code for performing the operations of the present application may be written in one or more programming languages, including object-oriented programming languages—such as Java, Smalltalk, C++, but also conventional Procedural programming language - such as "C" language or similar programming language.
  • the program code may execute entirely on the user's computer, partly on the user's computer, as a stand-alone software package, partly on the user's computer and partly on a remote computer, or entirely on the remote computer or electronic device.
  • the remote computer may be connected to the user computer through any kind of network, including a LAN or WAN, or may be connected to an external computer (eg, using an Internet service provider to connect through the Internet).

Landscapes

  • Engineering & Computer Science (AREA)
  • Databases & Information Systems (AREA)
  • Theoretical Computer Science (AREA)
  • Data Mining & Analysis (AREA)
  • Physics & Mathematics (AREA)
  • General Engineering & Computer Science (AREA)
  • General Physics & Mathematics (AREA)
  • Debugging And Monitoring (AREA)
  • Information Transfer Between Computers (AREA)
  • Stored Programmes (AREA)

Abstract

本申请公开了一种事件响应装置,该装置包括指令绑定器、基础视图层、基础逻辑层、基础数据处理层、视图子类、逻辑子类和数据处理子类,其中,所述视图子类、逻辑子类和数据处理子类分别继承于所述基础视图层、基础逻辑层和基础数据处理层;所述指令绑定器设置为当浏览器事件被触发时,将所述浏览器事件与初始指令进行绑定;所述视图子类设置为将所述浏览器事件的业务行为数据封装至所述初始指令中,形成所述浏览器事件的目标指令,对目标指令进行发布;所述逻辑子类设置为对接收的所述目标指令进行逻辑验证,并对验证成功的目标指令进行发布;所述数据处理子类设置为对接收的验证成功的目标指令进行处理。

Description

事件响应装置、方法、电子设备及存储介质
本申请要求在2020年09月25日提交中国专利局、申请号为202011025746.X的中国专利申请的优先权,该申请的全部内容通过引用结合在本申请中。
技术领域
本申请实施例涉及数据处理技术领域,例如涉及一种事件响应装置、方法、电子设备及存储介质。
背景技术
在网页开发中,网页浏览器主要通过超文本传输协议(HyperText Transfer Protocol,HTTP)与网页服务器交互并获取网页。一个网页中可以包括多个文档,每个文档均从服务器获取。在用户浏览网页时,浏览器通过响应浏览器内核传出来的事件,将网页上的信息正确的显示出来。事件中标识有当前事件的类型及内容,比如用户点击了新建文章的按钮、鼠标悬浮显示菜单以及当前浏览的网页标题等,在事件响应中,浏览器将需要的信息提取出来,然后做出响应动作或者将信息更新在界面上通知用户。
但是在使用过程中,用户比较难增加自定义事件,对页面的操作会不灵活。如果通过开发浏览器扩展功能实现用户自定义事件响应,开发难度会较大,成本高。
发明内容
本申请提供一种事件响应装置、方法、电子设备及存储介质,以实现快速处理浏览器事件,提高了浏览器事件的响应效率。
本申请实施例提供了一种事件响应装置,该装置包括指令绑定器、基础视图层、基础逻辑层、基础数据处理层、视图子类、逻辑子类和数据处理子类,其中,所述视图子类继承于所述基础视图层,所述逻辑子类继承于所述基础逻辑层,所述数据处理子类继承于所述基础数据处理层;所述指令绑定器设置为当浏览器事件被触发时,将所述浏览器事件与初始指令进行绑定;所述视图子类设置为将所述浏览器事件的业务行为数据封装至所述初始指令中,形成所述浏览器事件的目标指令,并对所述目标指令进行发布;所述逻辑子类设置为对接收的所述目标指令进行逻辑验证,并对验证成功的目标指令进行发布;所述数据处理子类设置为对接收的验证成功的目标指令进行处理。
本申请实施例还提供了一种事件响应方法,该方法应用于如上述任一实施例所述的事件响应装置,该方法包括:当浏览器事件被触发时,基于指令绑定器将所述浏览器事件与初始指令进行绑定;基于视图子类将所述浏览器事件的业务行为数据封装至所述初始指令中,形成所述浏览器事件的目标指令,其中,所述视图子类继承于基础视图层;基于逻辑子类对所述目标指令进行逻辑验证,其中,所述逻辑子类继承于所述基础逻辑层;基于数据处理子类对验证成功的目标指令进行处理。
本申请实施例还提供了一种电子设备,所述电子设备包括:一个或多个处理器;存储装置,设置为存储一个或多个程序,当所述一个或多个程序被所述一个或多个处理器执行,使得所述一个或多个处理器实现如本申请任意实施例提供的事件响应方法。
本申请实施例还提供了一种计算机可读存储介质,其上存储有计算机程序,该程序被处理器执行时实现本申请任意实施例提供的事件响应方法。
附图说明
图1为本申请实施例一提供的事件响应装置的结构示意图;
图2为本申请实施例二提供的事件响应方法的流程图;
图3为本申请实施例三提供的电子设备的结构示意图。
具体实施方式
下面结合附图和实施例对本申请进行说明。可以理解的是,此处所描述的实施例仅仅用于解释本申请,而非对本申请的限定。另外还需要说明的是,为了便于描述,附图中仅示出了与本申请相关的部分而非全部结构。
实施例一
图1是本申请实施例一中的事件响应装置的结构示意图。本实施例可以适用于对浏览器事件进行响应的情况。如图1所示,所述装置包括:指令绑定器110、基础视图层120、基础逻辑层130、基础数据处理层140、视图子类150、逻辑子类160和数据处理子类170,其中,所述视图子类150继承于所述基础视图层120,所述逻辑子类160继承于所述基础逻辑层130,所述数据处理子类170继承于所述基础数据处理层140;所述指令绑定器110,设置为当浏览器事件被触发时,将所述浏览器事件与初始指令进行绑定;所述视图子类150,设置为将所述浏览器事件的业务行为数据封装至所述初始指令中,形成所述浏览器事件的目标指令,并对目标指令进行发布;所述逻辑子类160,设置为对接收的目标 指令进行逻辑验证,并对验证成功的目标指令进行发布;所述数据处理子类170,设置为对接收的验证成功的目标指令进行处理。
在本申请实施例中,浏览器包括浏览器外壳部分与浏览器内核部分。外壳部分包括浏览器的前端界面显示部分,如地址栏、菜单、收藏夹等;浏览器内核设置为处理用户浏览所产生的浏览器事件,如网页请求,包括页面下载、页面显示和渲染等功能。当用户对浏览页面进行操作产生浏览器事件时,监听浏览器事件的监听模块获取该浏览器事件的标识。浏览器事件的标识可以是预先设置的多个浏览器事件的唯一标识,不对标识的形式进行限定,例如可以是事件名称、哈希值或者由数字、字符等形成的字符串。可选的,基于浏览器事件中的事件参数生成唯一标识,其中,事件参数可以包括但不限于业务行为类型、业务行为状态和业务行为数据。可选的,可以采用Angular组件实现浏览器事件的标识的设置。基础Angular组件中包括层叠样式表(Cascading Style Sheets,CSS)文件、超文本标记语言(HyperText Mark-up Language,HTML)文件和TypeScript文件等文件。在创建Angular组件时,在需要操作的浏览器事件中添加对应的唯一标识。当然,也可以采用其他方式添加浏览器事件的唯一标识,本实施例对此不加以限制。
可选的,当用户浏览网页时,浏览器通过响应浏览器内核传出的浏览器事件,将网页上的信息正确的显示出来。事件中包括当前事件的类型及内容,比如用户点击了新建文章的按钮、鼠标悬浮显示菜单以及当前浏览的网页标题等。当浏览器事件被触发,即从内核中传出浏览器事件时,基于浏览器事件中的业务行为类型确定与浏览器事件绑定的初始指令,将浏览器事件的唯一标识与所述初始指令进行绑定。浏览器事件中的业务行为类型为浏览器根据用户的触发指令产生的行为的类型。业务行为类型包括但不限于页面下载、页面显示、页面更新、页面关闭等类型。需要说明的是,初始指令中没有对应浏览器事件的行为数据。存储器中可以预先存储有不同业务行为类型对应的不同初始指令,可根据当前浏览器事件中的业务行为类型在初始指令的存储区域中进行匹配,调用与当前浏览器事件中的业务行为类型匹配成功的初始指令,指令绑定器110将浏览器事件和与浏览器事件中的业务行为类型匹配成功的初始指令进行绑定,指令绑定器110可以是将浏览器事件的唯一标识添加至该初始指令的指定字段。
本实施例中,事件响应装置中配置有基础视图层120、基础逻辑层130、基础数据处理层140,其中,基础视图层120具有指令封装功能,基础逻辑层130具有指令验证功能,基础数据处理层140具有数据处理功能。通过设置基础视图层120、基础逻辑层130、基础数据处理层140,并创建分别继承于基础视图层120、基础逻辑层130、基础数据处理层140的多个子类,创建的多个子类中 可以复写基础层的函数方法,具有基础层的功能,在避免代码冗余的基础上,实现多子类对浏览器事件的并行处理,提高了多个浏览器事件的响应效率。
视图子类150的数量、逻辑子类160的数量和数据处理子类170的数量为至少一个,可以是预先创建的,还可以是在监测到浏览器事件时实时创建的。
可选的,视图子类150将所述浏览器事件的业务行为数据封装至所述初始指令中,形成所述浏览器事件的目标指令。业务行为数据包括但不限于页面下载的内容、页面显示的内容以及页面更新的内容等内容数据。可选的,视图子类150还通过指令调度总线将目标指令进行广播发送。指令调度总线分别与视图子类150、逻辑子类160和数据处理子类170依次连接,并设置为对目标指令进行发布。当视图子类150的数量、逻辑子类160的数量和数据处理子类170的数量为多个时,指令调度总线与每一个视图子类150、每一个逻辑子类160和每一个数据处理子类170连接,实现对目标指令的准确发布。
可选的,指令调度总线中预先存储有指令与逻辑子类160的映射关系。根据该映射关系可以将目标指令发送至对应的逻辑子类160中进行逻辑验证。示例性的,当目标指令类型为A类型时,根据预先存储的指令与逻辑子类的映射关系确定类型为A的逻辑子类,并将该目标指令从视图子类发送至该逻辑子类。需要说明的是,目标指令类型可以是与浏览器事件的业务行为类型相同,相应的,逻辑子类160为继承于基础逻辑层130的设置为处理不同业务行为类型的逻辑子类。
可选的,逻辑子类160对目标指令进行逻辑验证的验证内容包括:对接收的目标指令所处的处理层级和流转状态进行判断。处理层级包括视图层、逻辑层和数据处理层。流转状态包括从视图层到逻辑层再到数据处理层的流转顺序,以及从数据处理层到逻辑层再到视图层的流转顺序。可选的,当目标指令处于逻辑层,且流转状态满足视图层、逻辑层和数据处理层的流转顺序时,确定逻辑验证成功。
在逻辑子类160对目标指令验证后,通过指令调度总线对验证成功的目标指令进行发布。指令调度总线根据预先存储的指令与数据处理子类170的映射关系,将验证成功的目标指令发送到对应的数据处理子类170进行响应策略。示例性的,当验证成功的目标指令类型为A类型时,根据预先存储的指令与数据处理子类的映射关系确定类型为A的数据处理子类,并将该验证成功的目标指令从逻辑子类发送至A类型对应的数据处理子类进行行为数据的响应处理。需要说明的是,逻辑子类160的数量和数据处理子类170的数量为至少一个,可以使多个浏览器事件实现并行处理,缩短了浏览器事件的响应周期。
数据处理子类170接收验证成功的目标指令,并基于目标指令的配置信息 确定目标指令的响应策略,基于响应策略执行目标指令。目标指令的配置信息可以预先配置并存储至数据处理子类170中,也可以在处理过程中在数据处理子类170中进行预设时间间隔的设置,还可以是由目标指令的指定字段携带,本实施例对此不加以限制。目标指令的配置信息可以是不同的配置标识,例如可以是本地标识和云端标识。响应策略包括将目标指令中的业务行为数据缓存至数据存储模块;或者,将目标指令中的业务行为数据发送至后台数据接口。例如,配置信息为本地标识时,数据处理子类将目标指令中的业务行为数据缓存至数据存储模块;当配置信息为运动标识时,数据处理子类将目标指令中的业务行为数据进行发送至后台数据接口。将目标指令中的业务行为数据缓存至数据存储模块可以使浏览器在不依赖后台数据的情况下进行独立响应处理浏览器事件,缩短了浏览器事件的响应时间,提高了浏览器事件的响应效率。
本申请实施例提供了一种事件响应装置,通过当浏览器事件被触发时,基于指令绑定器将所述浏览器事件与初始指令进行绑定;基于视图子类将所述浏览器事件的业务行为数据封装至所述初始指令中,形成所述浏览器事件的目标指令,其中,所述视图子类继承于基础视图层;基于逻辑子类对所述目标指令进行逻辑验证,其中,所述逻辑子类继承与所述基础逻辑层;基于数据处理子类根据所述目标指令的配置信息确定所述目标指令的响应策略,基于所述响应策略执行所述目标指令。该装置解决了相关技术中页面操作不灵活的问题,实现了快速处理浏览器事件,提高了浏览器事件的响应效率。
实施例二
图2为本申请实施例二中的事件响应方法的流程图。本实施例可以适用于对浏览器事件进行响应的情况,该方法可以由事件响应的装置执行,该事件响应装置可以采用软件和/或硬件的方式实现。如图1所示,该方法包括如下步骤。
S210、当浏览器事件被触发时,基于指令绑定器将所述浏览器事件与初始指令进行绑定。
S220、基于视图子类将所述浏览器事件的业务行为数据封装至所述初始指令中,形成所述浏览器事件的目标指令,其中,所述视图子类继承于基础视图层。
S230、基于逻辑子类对所述目标指令进行逻辑验证,其中,所述逻辑子类继承于基础逻辑层。
S240、基于数据处理子类根据所述目标指令的配置信息确定所述目标指令的响应策略,基于所述响应策略执行所述目标指令。
可选的,所述浏览器事件中配置有唯一标识。
可选的,所述基于指令绑定器将所述浏览器事件与初始指令进行绑定,包括:基于所述浏览器事件中的业务行为类型确定与所述浏览器事件绑定的初始指令,将所述浏览器事件的唯一标识与所述初始指令进行绑定。
可选的,所述事件响应方法还包括:基于预先存储的指令与逻辑子类的映射关系,以及预先存储的指令与数据处理子类的映射关系,对所述目标指令进行发布;其中,所述指令调度总线与所述视图子类、逻辑子类和数据处理子类依次连接,设置为对所述目标指令进行发布。
可选的,所述视图子类的数量、逻辑子类的数量和数据处理子类的数量为至少一个。
可选的,基于逻辑子类对所述目标指令进行逻辑验证,包括:对接收的所述目标指令所处的处理层级和流转状态进行判断,其中,所述处理层级包括视图层,逻辑层和数据处理层;当所述目标指令处于基础逻辑层,且流转状态满足视图层、逻辑层和数据处理层的流转顺序时,确定逻辑验证成功。
可选的,所述响应策略包括将所述目标指令中的业务行为数据缓存至数据存储模块;或者,将所述目标指令中的业务行为数据进行发送至后台数据接口。
可选的,所述事件响应方法还包括:创建继承于所述基础视图层的至少一个视图子类;创建继承于所述基础逻辑层且与至少一个业务行为类型对应的至少一个逻辑子类;创建继承于所述基础数据处理层且与至少一个业务行为类型对应的至少一个数据处理子类。
本申请实施例提供了一种事件响应方法,通过当浏览器事件被触发时,基于指令绑定器将所述浏览器事件与初始指令进行绑定;基于视图子类将所述浏览器事件的业务行为数据封装至所述初始指令中,形成所述浏览器事件的目标指令,其中,所述视图子类继承于基础视图层;基于逻辑子类对所述目标指令进行逻辑验证,其中,所述逻辑子类继承于所述基础逻辑层;基于数据处理子类根据所述目标指令的配置信息确定所述目标指令的响应策略,基于所述响应策略执行所述目标指令。该方法解决了相关技术中页面操作不灵活的问题,实现了快速处理浏览器事件,提高了浏览器事件的响应效率。
实施例三
图3是本申请实施例三中的电子设备的结构示意图。图3示出了适于用来实现本申请实施方式的示例性电子设备312的框图。图3显示的电子设备312仅仅是一个示例,不应对本申请实施例的功能和使用范围带来任何限制。
如图3所示,电子设备312以通用计算设备的形式表现。电子设备312的组件可以包括但不限于:一个或者多个处理器或者处理单元316,系统存储器 328,连接不同系统组件(包括系统存储器328和处理单元316)的总线318。
总线318表示多类总线结构中的一种或多种,包括存储器总线或者存储器控制器,外围总线,图形加速端口,处理器或者使用多种总线结构中的任意总线结构的局域总线。举例来说,这些体系结构包括但不限于工业标准体系结构((Industry Standard Architecture,ISA)总线,微通道体系结构(Micro Channel Architecture,MCA)总线,增强型ISA总线、视频电子标准协会(Video Electronics Standards Association,VESA)局域总线以及外围组件互连(Peripheral Component Interconnect,PCI)总线。
电子设备312包括多种计算机系统可读介质。这些介质可以是任何能够被电子设备312访问的可用介质,包括易失性和非易失性介质,可移动的和不可移动的介质。
系统存储器328可以包括易失性存储器形式的计算机系统可读介质,例如随机存取存储器(Random Access Memory,RAM)330和/或高速缓存存储器332。电子设备312还可以包括其它可移动/不可移动的、易失性/非易失性计算机系统存储介质。仅作为举例,存储系统334可以设置为读写不可移动的、非易失性磁介质(图3未显示,通常称为“硬盘驱动器”)。尽管图3中未示出,存储系统334可以提供设置为对可移动非易失性磁盘(例如“软盘”)进行读写的磁盘驱动器,以及对可移动非易失性光盘(例如只读光盘(Compact Disc-Read-Only Memory,CD-ROM),数字视盘(Digital Video Disc-Read-Only Memory,DVD-ROM)或者其它光介质)进行读写的光盘驱动器。在这些情况下,每个驱动器可以通过一个或者多个数据介质接口与总线318相连。存储器328可以包括至少一个程序产品,该程序产品具有一组(例如至少一个)程序模块,这些程序模块被配置以执行本申请多个实施例的功能。
具有一组(至少一个)程序模块336的程序/实用工具326,可以存储在例如存储器328中,这样的程序模块336包括但不限于操作系统、一个或者多个应用程序、其它程序模块以及程序数据,这些示例中的每一个或一种组合中可能包括网络环境的实现。程序模块336通常执行本申请所描述的实施例中的功能和/或方法。
电子设备312也可以与一个或多个外部设备314(例如键盘、指向设备、显示器324等)通信,还可与一个或者多个使得用户能与该电子设备312交互的设备通信,和/或与使得该电子设备312能与一个或多个其它计算设备进行通信的任何设备(例如网卡,调制解调器等等)通信。这种通信可以通过输入/输出(Input/Output,I/O)接口322进行。并且,电子设备312还可以通过网络适配器320与一个或者多个网络(例如局域网(Local Area Network,LAN),广域 网(Wide Area Network,WAN)和/或公共网络,例如因特网)通信。如图3所示,网络适配器320通过总线318与电子设备312的其它模块通信。应当明白,尽管图3中未示出,可以结合电子设备312使用其它硬件和/或软件模块,包括但不限于:微代码、设备驱动器、冗余处理单元、外部磁盘驱动阵列、磁盘阵列(Redundant Arrays of Independent Disks,RAID)系统、磁带驱动器以及数据备份存储系统等。
处理单元316通过运行存储在系统存储器328中的程序,从而执行多种功能应用以及数据处理,例如实现本申请实施例所提供的事件响应方法,该方法包括:当浏览器事件被触发时,基于指令绑定器将所述浏览器事件与初始指令进行绑定;基于视图子类将所述浏览器事件的业务行为数据封装至所述初始指令中,形成所述浏览器事件的目标指令,其中,所述视图子类继承于基础视图层;基于逻辑子类对所述目标指令进行逻辑验证,其中,所述逻辑子类继于与所述基础逻辑层;基于数据处理子类根据所述目标指令的配置信息确定所述目标指令的响应策略,基于所述响应策略执行所述目标指令。
实施例四
本申请实施例四还提供了一种计算机可读存储介质,其上存储有计算机程序,该程序被处理器执行时实现如本申请实施例所提供的事件响应方法,该方法包括:当浏览器事件被触发时,基于指令绑定器将所述浏览器事件与初始指令进行绑定;基于视图子类将所述浏览器事件的业务行为数据封装至所述初始指令中,形成所述浏览器事件的目标指令,其中,所述视图子类继承于基础视图层;基于逻辑子类对所述目标指令进行逻辑验证,其中,所述逻辑子类继承于所述基础逻辑层;基于数据处理子类根据所述目标指令的配置信息确定所述目标指令的响应策略,基于所述响应策略执行所述目标指令。
本申请实施例的计算机存储介质,可以采用一个或多个计算机可读的介质的任意组合。计算机可读介质可以是计算机可读信号介质或者计算机可读存储介质。计算机可读存储介质例如可以是——但不限于——电、磁、光、电磁、红外线、或半导体的系统、装置或器件,或者任意以上的组合。计算机可读存储介质的例子(非穷举的列表)包括:具有一个或多个导线的电连接、便携式计算机磁盘、硬盘、RAM、只读存储器(Read-Only Memory,ROM)、可擦式可编程只读存储器(Electrically Programmable Read-Only Memory,EPROM)或闪存、光纤、便携式CD-ROM、光存储器件、磁存储器件、或者上述的任意合适的组合。在本文件中,计算机可读存储介质可以是任何包含或存储程序的有形介质,该程序可以被指令执行系统、装置或者器件使用或者与其结合使用。
计算机可读的信号介质可以包括在基带中或者作为载波一部分传播的数据 信号,其中承载了计算机可读的程序代码。这种传播的数据信号可以采用多种形式,包括但不限于电磁信号、光信号或上述的任意合适的组合。计算机可读的信号介质还可以是计算机可读存储介质以外的任何计算机可读介质,该计算机可读介质可以发送、传播或者传输用于由指令执行系统、装置或者器件使用或者与其结合使用的程序。
计算机可读介质上包含的程序代码可以用任何适当的介质传输,包括——但不限于无线、电线、光缆、射频(Radio Frequency,RF)等,或者上述的任意合适的组合。
可以以一种或多种程序设计语言或其组合来编写用于执行本申请操作的计算机程序代码,所述程序设计语言包括面向对象的程序设计语言—诸如Java、Smalltalk、C++,还包括常规的过程式程序设计语言—诸如”C”语言或类似的程序设计语言。程序代码可以完全地在用户计算机上执行、部分地在用户计算机上执行、作为一个独立的软件包执行、部分在用户计算机上部分在远程计算机上执行、或者完全在远程计算机或电子设备上执行。在涉及远程计算机的情形中,远程计算机可以通过任意种类的网络——包括LAN或WAN—连接到用户计算机,或者,可以连接到外部计算机(例如利用因特网服务提供商来通过因特网连接)。

Claims (10)

  1. 一种事件响应装置,包括指令绑定器、基础视图层、基础逻辑层、基础数据处理层、视图子类、逻辑子类和数据处理子类,其中,
    所述视图子类继承于所述基础视图层,所述逻辑子类继承于所述基础逻辑层,所述数据处理子类继承于所述基础数据处理层;
    所述指令绑定器设置为在浏览器事件被触发的情况下,将所述浏览器事件与初始指令进行绑定;
    所述视图子类设置为将所述浏览器事件的业务行为数据封装至所述初始指令中,形成所述浏览器事件的目标指令,并对所述目标指令进行发布;
    所述逻辑子类设置为对接收的所述目标指令进行逻辑验证,并对验证成功的目标指令进行发布;
    所述数据处理子类设置为对接收的验证成功的目标指令进行处理。
  2. 根据权利要求1所述的装置,其中,所述浏览器事件中配置有唯一标识;
    所述指令绑定器是设置为:
    基于所述浏览器事件中的业务行为类型确定与所述浏览器事件绑定的初始指令,并将所述浏览器事件的唯一标识与所述初始指令进行绑定。
  3. 根据权利要求1所述的装置,还包括指令调度总线,所述指令调度总线与所述视图子类、所述逻辑子类和所述数据处理子类依次连接,并设置为对所述目标指令进行发布。
  4. 根据权利要求3所述的装置,其中,所述逻辑子类的数量为至少一个和所述数据处理子类的数量为至少一个;
    所述指令调度总线是设置为:基于预先存储的指令与所述逻辑子类的映射关系,以及所述预先存储的指令与所述数据处理子类的映射关系,对所述目标指令进行发布。
  5. 根据权利要求1所述的装置,其中,所述逻辑子类设置为:
    对所述接收的所述目标指令所处的处理层级和流转状态进行判断;其中,所述处理层级包括视图层,逻辑层和数据处理层;
    在所述接收的所述目标指令处于所述逻辑层,且所述流转状态满足所述视图层、所述逻辑层和所述数据处理层的流转顺序的情况下,确定所述接收的所述目标指令的逻辑验证成功。
  6. 根据权利要求1所述的装置,其中,所述数据处理子类是设置为:
    基于所述目标指令的配置信息确定所述目标指令的响应策略,基于所述响 应策略执行所述目标指令,其中,所述响应策略包括将所述目标指令中的业务行为数据缓存至数据存储模块;或者,将所述目标指令中的业务行为数据发送至后台数据接口。
  7. 一种事件响应方法,应用于如权利要求1-6任一所述的事件响应装置,包括:
    在浏览器事件被触发的情况下,基于指令绑定器将所述浏览器事件与初始指令进行绑定;
    基于视图子类将所述浏览器事件的业务行为数据封装至所述初始指令中,形成所述浏览器事件的目标指令,其中,所述视图子类继承于基础视图层;
    基于逻辑子类对所述目标指令进行逻辑验证,其中,所述逻辑子类继承于基础逻辑层;
    基于数据处理子类对验证成功的目标指令进行处理。
  8. 根据权利要求7所述的方法,还包括:
    创建继承于所述基础视图层的至少一个视图子类;
    创建继承于所述基础逻辑层且与至少一个业务行为类型对应的至少一个逻辑子类;
    创建继承于所述基础数据处理层且与至少一个业务行为类型对应的至少一个数据处理子类。
  9. 一种电子设备,包括:
    至少一个处理器;
    存储装置,设置为存储至少一个程序,
    当所述至少一个程序被所述至少一个处理器执行,使得所述至少一个处理器实现如权利要求7-8任一所述的事件响应方法。
  10. 一种计算机可读存储介质,其上存储有计算机程序,该程序被处理器执行时实现如权利要求7-8任一所述的事件响应方法。
PCT/CN2021/114970 2020-09-25 2021-08-27 事件响应装置、方法、电子设备及存储介质 WO2022062835A1 (zh)

Applications Claiming Priority (2)

Application Number Priority Date Filing Date Title
CN202011025746.X 2020-09-25
CN202011025746.XA CN112131500B (zh) 2020-09-25 2020-09-25 一种事件响应装置、方法、电子设备及存储介质

Publications (1)

Publication Number Publication Date
WO2022062835A1 true WO2022062835A1 (zh) 2022-03-31

Family

ID=73840268

Family Applications (1)

Application Number Title Priority Date Filing Date
PCT/CN2021/114970 WO2022062835A1 (zh) 2020-09-25 2021-08-27 事件响应装置、方法、电子设备及存储介质

Country Status (2)

Country Link
CN (1) CN112131500B (zh)
WO (1) WO2022062835A1 (zh)

Cited By (2)

* Cited by examiner, † Cited by third party
Publication number Priority date Publication date Assignee Title
CN115495069A (zh) * 2022-09-26 2022-12-20 煤炭科学研究总院有限公司 基于模型驱动的煤炭工业软件流程实现方法、装置及设备
CN117008884A (zh) * 2023-07-06 2023-11-07 广州三七极耀网络科技有限公司 游戏开发中的逻辑类处理方法、装置、设备及存储介质

Families Citing this family (3)

* Cited by examiner, † Cited by third party
Publication number Priority date Publication date Assignee Title
CN112131500B (zh) * 2020-09-25 2023-11-07 北京锐安科技有限公司 一种事件响应装置、方法、电子设备及存储介质
CN114760278A (zh) * 2020-12-28 2022-07-15 国信君和(北京)科技有限公司 微前端子应用之间的通信方法及装置
CN113419710B (zh) * 2021-06-25 2024-03-15 北京悟空出行科技有限公司 小程序的开发方法、装置、电子设备和介质

Citations (5)

* Cited by examiner, † Cited by third party
Publication number Priority date Publication date Assignee Title
US20070198940A1 (en) * 2006-02-21 2007-08-23 Microsoft Corporation Logical representation of a user interface form
CN105373548A (zh) * 2014-08-25 2016-03-02 腾讯科技(深圳)有限公司 移动设备及其浏览器自定义事件的方法
CN107885497A (zh) * 2017-11-08 2018-04-06 北京锐安科技有限公司 一种基于表格框架的网页前端数据展示方法及装置
CN109508436A (zh) * 2018-11-14 2019-03-22 北京锐安科技有限公司 基于异步加载页面的前端路由方法及装置
CN112131500A (zh) * 2020-09-25 2020-12-25 北京锐安科技有限公司 一种事件响应装置、方法、电子设备及存储介质

Family Cites Families (3)

* Cited by examiner, † Cited by third party
Publication number Priority date Publication date Assignee Title
US11012466B2 (en) * 2016-07-13 2021-05-18 Indrasoft, Inc. Computerized system and method for providing cybersecurity detection and response functionality
CN109325195B (zh) * 2018-07-23 2020-10-13 招银云创(深圳)信息技术有限公司 浏览器的渲染方法和系统、计算机设备、计算机存储介质
CN111526425B (zh) * 2020-04-26 2022-08-09 北京字节跳动网络技术有限公司 视频播放方法、装置、可读介质及电子设备

Patent Citations (5)

* Cited by examiner, † Cited by third party
Publication number Priority date Publication date Assignee Title
US20070198940A1 (en) * 2006-02-21 2007-08-23 Microsoft Corporation Logical representation of a user interface form
CN105373548A (zh) * 2014-08-25 2016-03-02 腾讯科技(深圳)有限公司 移动设备及其浏览器自定义事件的方法
CN107885497A (zh) * 2017-11-08 2018-04-06 北京锐安科技有限公司 一种基于表格框架的网页前端数据展示方法及装置
CN109508436A (zh) * 2018-11-14 2019-03-22 北京锐安科技有限公司 基于异步加载页面的前端路由方法及装置
CN112131500A (zh) * 2020-09-25 2020-12-25 北京锐安科技有限公司 一种事件响应装置、方法、电子设备及存储介质

Cited By (4)

* Cited by examiner, † Cited by third party
Publication number Priority date Publication date Assignee Title
CN115495069A (zh) * 2022-09-26 2022-12-20 煤炭科学研究总院有限公司 基于模型驱动的煤炭工业软件流程实现方法、装置及设备
CN115495069B (zh) * 2022-09-26 2024-04-16 煤炭科学研究总院有限公司 基于模型驱动的煤炭工业软件流程实现方法、装置及设备
CN117008884A (zh) * 2023-07-06 2023-11-07 广州三七极耀网络科技有限公司 游戏开发中的逻辑类处理方法、装置、设备及存储介质
CN117008884B (zh) * 2023-07-06 2024-05-17 广州三七极耀网络科技有限公司 游戏开发中的逻辑类处理方法、装置、设备及存储介质

Also Published As

Publication number Publication date
CN112131500A (zh) 2020-12-25
CN112131500B (zh) 2023-11-07

Similar Documents

Publication Publication Date Title
WO2022062835A1 (zh) 事件响应装置、方法、电子设备及存储介质
US11256491B2 (en) System and methods for integration of an application runtime environment into a user computing environment
US7664786B2 (en) Apparatus and method for managing application context
US7155490B1 (en) System and method for providing a web-based operating system
JP3444471B2 (ja) 書式作成方法およびディジタル処理装置に書式作成方法を実行させるための装置可読な記憶媒体
US8732588B2 (en) Method and apparatus for remotely displaying screen files and efficiently handling remote operator input
AU2018257221C1 (en) Service processing method and device
US9071570B2 (en) Method and apparatus to select and deliver portable portlets
CN111279320A (zh) 实现微服务配置和管理的api储存库
US8983935B2 (en) Methods for utilizing a javascript emulator in a web content proxy server and devices thereof
WO2018019168A1 (zh) 通过移动浏览器唤醒app应用的方法及装置
US9384005B2 (en) Systems and methods for dynamic configuration of client-side development environments through use of application servers
JP2017504129A (ja) ウェブブラウザにおいて表わされる状態表現の構築
CN114817969B (zh) 网盘盘符文件预览方法、装置、终端及存储介质
JP2008502038A (ja) 1つの選択可能なウェブ・プロジェクトとしての、複数のブラウザ・インスタンスの保存
US10798201B2 (en) Redirecting USB devices via a browser-based virtual desktop infrastructure application
CN113761412A (zh) 应用页面的显示方法、装置、电子设备、介质及应用系统
WO2008086209A2 (en) System and method for managing location-independent objects
CN102184112B (zh) 控件升级方法及装置
WO2022126711A1 (zh) 网页取证方法、装置及设备
US10996963B2 (en) Integrating web-based tutorials into websites using a tag manager
CN112596838B (zh) 通用Web页面的显示方法、装置、设备及存储介质
CN114816203B (zh) 适用于网盘盘符的快捷操作方法、装置、终端及存储介质
US20020169796A1 (en) System and method for writing a hypermedia file to a multimedia storage device
JP2002063056A (ja) 画像ファイル処理装置、画像ファイル処理プログラム及び当該プログラムを記録した媒体

Legal Events

Date Code Title Description
121 Ep: the epo has been informed by wipo that ep was designated in this application

Ref document number: 21871208

Country of ref document: EP

Kind code of ref document: A1

NENP Non-entry into the national phase

Ref country code: DE

122 Ep: pct application non-entry in european phase

Ref document number: 21871208

Country of ref document: EP

Kind code of ref document: A1

32PN Ep: public notification in the ep bulletin as address of the adressee cannot be established

Free format text: NOTING OF LOSS OF RIGHTS PURSUANT TO RULE 112(1) EPC (EPO FORM 1205 DATED 26/09/2023)