[go: up one dir, main page]

CN111142982B - Event execution method and device, and electronic device - Google Patents

Event execution method and device, and electronic device Download PDF

Info

Publication number
CN111142982B
CN111142982B CN201811300107.2A CN201811300107A CN111142982B CN 111142982 B CN111142982 B CN 111142982B CN 201811300107 A CN201811300107 A CN 201811300107A CN 111142982 B CN111142982 B CN 111142982B
Authority
CN
China
Prior art keywords
event
interface
identifier
attribute information
event execution
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.)
Active
Application number
CN201811300107.2A
Other languages
Chinese (zh)
Other versions
CN111142982A (en
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.)
Hitevision Co Ltd
Original Assignee
Hitevision 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 Hitevision Co Ltd filed Critical Hitevision Co Ltd
Priority to CN201811300107.2A priority Critical patent/CN111142982B/en
Publication of CN111142982A publication Critical patent/CN111142982A/en
Application granted granted Critical
Publication of CN111142982B publication Critical patent/CN111142982B/en
Active legal-status Critical Current
Anticipated expiration legal-status Critical

Links

Classifications

    • GPHYSICS
    • G06COMPUTING OR CALCULATING; 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

Landscapes

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

Abstract

本发明公开了一种事件执行方法及装置、电子设备,包括:构建事件池,所述事件池包括事件执行接口标识及其对应的事件标识;于界面执行事件,调用事件执行接口;根据所述事件执行接口对应的事件执行接口标识查找所述事件池,获取相应的事件标识,根据所述事件标识确定要执行的事件,执行所述事件对应的业务逻辑。本发明通过将实现界面的功能模块与执行业务逻辑的功能模块相独立分开,便于后期维护与功能扩展,降低代码复杂度与冗余度。

The present invention discloses an event execution method and device, and an electronic device, comprising: constructing an event pool, the event pool comprising an event execution interface identifier and its corresponding event identifier; executing an event on the interface, calling the event execution interface; searching the event pool according to the event execution interface identifier corresponding to the event execution interface, obtaining the corresponding event identifier, determining the event to be executed according to the event identifier, and executing the business logic corresponding to the event. The present invention facilitates later maintenance and function expansion, and reduces code complexity and redundancy by independently separating the functional module for implementing the interface from the functional module for executing the business logic.

Description

Event execution method and device and electronic equipment
Technical Field
The present invention relates to the field of software technologies, and in particular, to an event execution method and apparatus, and an electronic device.
Background
In the current software development process, the interface function and the service logic are generally integrated together, namely, an event button is clicked on an interface, the event button calls corresponding service logic, the interface function is realized, and the interface code and the service logic code are realized in one module, so that the maintenance is difficult, the service function expansion is not facilitated, and when different modules realize the same or similar service logic, a large number of repeated redundant codes can appear, and the system performance is influenced.
Disclosure of Invention
Therefore, the invention aims to provide an event execution method and device and electronic equipment, which are convenient for subsequent maintenance and function expansion and reduce code complexity by independently opening an interface module and a module for realizing business logic.
Based on the above object, the present invention provides an event execution method, including:
constructing an event pool, wherein the event pool comprises event execution interface identifiers and corresponding event identifiers;
calling an event execution interface when the event is executed on the interface;
Searching the event pool according to the event execution interface identifier corresponding to the event execution interface, acquiring a corresponding event identifier, determining an event to be executed according to the event identifier, and executing service logic corresponding to the event.
Optionally, the method further comprises:
the event pool comprises an event execution interface identifier, and an event identifier and dynamic attribute information corresponding to the event execution interface identifier;
setting attribute information on the interface, executing an event, and calling the event execution interface, wherein the event execution interface carries the attribute information;
Searching the event pool according to the event execution interface identifier corresponding to the event execution interface, acquiring a corresponding event identifier, updating dynamic attribute information corresponding to the event identifier according to attribute information carried by the event execution interface, determining an event to be executed according to the event identifier, and executing business logic corresponding to the event according to the updated dynamic attribute information.
Optionally, the method further comprises: and determining a bottom layer interface to be called from a control layer according to the service logic, and calling the bottom layer interface to realize specific service logic.
Optionally, the method further comprises: and determining a bottom layer interface to be called from a control layer according to the service logic, and calling the bottom layer interface to realize specific service logic according to the updated dynamic attribute information.
The embodiment of the invention also provides an event execution device, which comprises:
The event pool module is used for storing event execution interface identifiers and event identifiers corresponding to the event execution interface identifiers;
the interface module is used for executing an event on the interface and calling the event execution interface;
And the execution module is used for searching the event pool module according to the event execution interface identifier corresponding to the event execution interface, acquiring a corresponding event identifier, determining an event to be executed according to the event identifier, and executing service logic corresponding to the event.
Optionally, the apparatus further includes:
the event pool module is used for storing the event execution interface identifier, the event identifier corresponding to the event execution interface identifier and the dynamic attribute information;
The interface module is used for setting attribute information on the interface, executing an event, calling the event execution interface, wherein the event execution interface carries the attribute information;
And the execution module is used for searching the event pool module according to the event execution interface identifier corresponding to the event execution interface, acquiring a corresponding event identifier, updating the dynamic attribute information corresponding to the event identifier according to the attribute information carried by the event execution interface, determining an event to be executed according to the event identifier, and executing service logic corresponding to the event according to the updated dynamic attribute information.
Optionally, the apparatus further includes:
The control layer is used for storing the service logic identification and the corresponding bottom layer interface;
and the bottom layer interface module is used for storing the bottom layer interface and the corresponding business logic codes.
The invention also discloses an electronic device comprising a memory, a processor and a computer program stored on the memory and executable on the processor, the processor implementing the method when executing the program.
From the above, it can be seen that the event execution method and device, and the electronic device provided by the invention construct an event pool, which includes an event execution interface identifier and a corresponding event identifier; calling an event execution interface when the event is executed on the interface; searching an event pool according to the event execution interface identification corresponding to the event execution interface, acquiring a corresponding event identification, determining an event to be executed according to the event identification, and executing service logic corresponding to the event. The invention separates the functional module for realizing the interface and the functional module for executing the business logic independently, thereby facilitating the later maintenance and the function expansion and reducing the complexity and the redundancy of codes.
Drawings
In order to more clearly illustrate the embodiments of the invention or the technical solutions in the prior art, the drawings that are required in the embodiments or the description of the prior art will be briefly described, it being obvious that the drawings in the following description are only some embodiments of the invention, and that other drawings may be obtained according to these drawings without inventive effort for a person skilled in the art.
FIG. 1 is a schematic flow chart of a method according to an embodiment of the invention;
fig. 2 is a schematic diagram of a device structure according to an embodiment of the present invention.
Detailed Description
The present invention will be further described in detail below with reference to specific embodiments and with reference to the accompanying drawings, in order to make the objects, technical solutions and advantages of the present invention more apparent.
It should be noted that, in the embodiments of the present invention, all the expressions "first" and "second" are used to distinguish two entities with the same name but different entities or different parameters, and it is noted that the "first" and "second" are only used for convenience of expression, and should not be construed as limiting the embodiments of the present invention, and the following embodiments are not described one by one.
FIG. 1 is a flow chart of a method according to an embodiment of the invention. As shown in the figure, the event execution method disclosed in the embodiment of the present invention includes:
S10: constructing an event pool, wherein the event pool comprises event execution interface identifiers and corresponding event identifiers;
s11: calling an event execution interface when the event is executed on the interface;
S12: searching an event pool according to the event execution interface identification corresponding to the event execution interface, acquiring a corresponding event identification, determining an event to be executed according to the event identification, and executing service logic corresponding to the event.
As shown in the figure, in the embodiment of the invention, the functional module for realizing the interface is independent from the functional module for realizing the business logic. An event pool is constructed, the corresponding relation between event execution interface identifiers and the event identifiers is stored in the event pool, the interface is only used for executing events (for example, clicking a specific function key), the event execution interface is triggered and called, then the corresponding event identifiers are searched and obtained from the event pool according to the event execution interface identifiers, service logic to be executed is determined according to the event identifiers, a bottom interface to be called is determined from a control layer according to the service logic, and the bottom interface is called to realize specific service logic.
If the interface sets attribute information, the event execution interface carries attribute parameters, and the event execution method further comprises the following steps:
s20: constructing an event pool, wherein the event pool comprises an event execution interface identifier, and corresponding event identifiers and dynamic attribute information;
s21: setting attribute information on an interface, executing an event, and calling an event execution interface, wherein the event execution interface carries the set attribute information;
S22: searching an event pool according to the event execution interface identifier corresponding to the event execution interface, acquiring a corresponding event identifier, updating dynamic attribute information corresponding to the event identifier according to attribute information carried by the event execution interface, determining an event to be executed according to the event identifier, and executing service logic corresponding to the event according to the updated dynamic attribute information.
In the embodiment of the invention, the event executing interface identifier and the corresponding relation and dynamic attribute information of the event identifier are stored in the event pool, the attribute information is set through the interface, the event executing interface is triggered and invoked, and the event executing interface carries the set attribute information; and then, searching and acquiring a corresponding event identifier from an event pool according to the calling event execution interface identifier, updating dynamic attribute information corresponding to the event identifier according to attribute information carried by the event execution interface, determining service logic to be executed according to the event identifier, determining a bottom layer interface to be called from a control layer according to the service logic, and calling the bottom layer interface to realize specific service logic according to the dynamic attribute information.
For example, setting the color attribute of the object to be blue and the width to be 10 units on the interface, clicking the determination button, calling the event execution interface, searching the event pool according to the event execution interface identification, obtaining the event identification to be executed, setting the dynamic attribute information of the event identification to be blue and the width to be 10 units, determining the service logic to be executed according to the event identification, ending the execution, setting the color to be blue and setting the width to be 10 units.
Fig. 2 is a schematic diagram of a device structure according to an embodiment of the present invention. As shown in the drawings, an event execution device provided by an embodiment of the present invention includes:
The event pool module is used for storing event execution interface identifiers and event identifiers corresponding to the event execution interface identifiers;
the interface module is used for executing an event on the interface and calling the event execution interface;
and the execution module is used for searching the event pool module according to the event execution interface identification corresponding to the event execution interface, acquiring the corresponding event identification, determining the event to be executed according to the event identification and executing the service logic corresponding to the event.
If the interface sets attribute information, the event execution interface carries attribute parameters, and the event execution device further comprises:
the event pool module is used for storing event execution interface identifiers and corresponding event identifiers and dynamic attribute information;
The interface module is used for setting attribute information on the interface, executing an event, and calling an event execution interface, wherein the event execution interface carries the set attribute information;
The execution module is used for searching the event pool module according to the event execution interface identification corresponding to the event execution interface, acquiring the corresponding event identification, updating the dynamic attribute information corresponding to the event identification according to the attribute information carried by the event execution interface, determining the event to be executed according to the event identification, and executing the business logic corresponding to the event according to the updated dynamic attribute information.
For specific execution of the business logic, the event execution device further comprises:
The control layer is used for storing the service logic identification and the corresponding bottom layer interface;
and the bottom layer interface module is used for storing the bottom layer interface and the corresponding business logic codes.
After the service logic to be executed is determined according to the event identification, the bottom layer interface to be called is determined from the control layer according to the service logic identification corresponding to the service logic, and the bottom layer interface is called to execute the corresponding service logic code so as to realize specific service logic. If the attribute information is set, determining service logic to be executed according to the event identification, determining a bottom layer interface to be called from a control layer according to the service logic identification corresponding to the service logic, and calling the bottom layer interface to execute service logic codes according to the updated dynamic attribute information so as to realize specific service logic.
Based on the above object, the embodiment of the present invention further provides an embodiment of an apparatus for executing the event execution method. The device comprises:
one or more processors and memory.
The apparatus for performing the event performing method may further include: input means and output means.
The processor, memory, input devices, and output devices may be connected by a bus or other means.
The memory is used as a non-volatile computer readable storage medium for storing non-volatile software programs, non-volatile computer executable programs and modules, such as program instructions/modules corresponding to the event execution method in the embodiments of the present invention. The processor executes various functional applications of the server and data processing by running nonvolatile software programs, instructions and modules stored in the memory, that is, implements the event execution method of the above-described method embodiments.
The memory may include a memory program area and a memory data area, wherein the memory program area may store an operating system, at least one application program required for a function; the storage data area may store data created according to the use of a device performing the event execution method, etc. In addition, the memory may include high-speed random access memory, and may also include non-volatile memory, such as at least one magnetic disk storage device, flash memory device, or other non-volatile solid-state storage device. In some embodiments, the memory optionally includes memory remotely located with respect to the processor, the remote memory being connectable to the membership user action monitoring device through a network. Examples of such networks include, but are not limited to, the internet, intranets, local area networks, mobile communication networks, and combinations thereof.
The input means may receive input numeric or character information and generate key signal inputs related to user settings and function control of the device performing the event execution method. The output means may comprise a display device such as a display screen.
The one or more modules are stored in the memory that, when executed by the one or more processors, perform the event execution method of any of the method embodiments described above. The technical effects of the embodiment of the device for executing the event execution method are the same as or similar to those of any of the method embodiments.
The embodiment of the invention also provides a non-transitory computer storage medium, which stores computer executable instructions that can execute the method for processing the list item operation in any of the method embodiments. Embodiments of the non-transitory computer storage medium have technical effects identical or similar to any of the method embodiments described above.
Finally, it should be noted that, as will be appreciated by those skilled in the art, all or part of the procedures in implementing the methods of the embodiments described above may be implemented by a computer program for instructing relevant hardware, where the program may be stored in a computer readable storage medium, and the program may include the procedures of the embodiments of the methods described above when executed. The storage medium may be a magnetic disk, an optical disk, a Read-Only Memory (ROM), a random-access Memory (Random Access Memory, RAM), or the like. The technical effects of the computer program embodiments are the same as or similar to any of the method embodiments described above.
In addition, typically, the devices, apparatuses and the like described in the present disclosure may be various electronic terminal apparatuses, such as mobile phones, personal Digital Assistants (PDAs), tablet computers (PADs), smart televisions, and the like, and may also be large-sized terminal apparatuses, such as servers, and the like, so the protection scope of the present disclosure should not be limited to a specific type of device, apparatus, and the like. The client described in the present disclosure may be applied to any of the above electronic terminal devices in the form of electronic hardware, computer software, or a combination of both.
Furthermore, the method according to the present disclosure may also be implemented as a computer program executed by a CPU, which may be stored in a computer-readable storage medium. The above-described functions defined in the methods of the present disclosure are performed when the computer program is executed by a CPU.
Furthermore, the above-described method steps and system units may also be implemented using a controller and a computer-readable storage medium storing a computer program for causing the controller to implement the above-described steps or unit functions.
Further, it should be appreciated that the computer-readable storage medium (e.g., memory) described herein can be either volatile memory or nonvolatile memory, or can include both volatile and nonvolatile memory. By way of example, and not limitation, nonvolatile memory can include Read Only Memory (ROM), programmable ROM (PROM), electrically Programmable ROM (EPROM), electrically Erasable Programmable ROM (EEPROM), or flash memory. Volatile memory can include Random Access Memory (RAM), which acts as external cache memory. By way of example and not limitation, RAM may be available in a variety of forms such as synchronous RAM (DRAM), dynamic RAM (DRAM), synchronous DRAM (SDRAM), double data rate SDRAM (DDR SDRAM), enhanced SDRAM (ESDRAM), synchronous Link DRAM (SLDRAM), and direct RambusRAM (DRRAM). The storage devices of the disclosed aspects are intended to comprise, without being limited to, these and other suitable types of memory.
The device of the foregoing embodiment is configured to implement the corresponding method in the foregoing embodiment, and has the beneficial effects of the corresponding method embodiment, which is not described herein.
Those of ordinary skill in the art will appreciate that: the discussion of any of the embodiments above is merely exemplary and is not intended to suggest that the scope of the disclosure, including the claims, is limited to these examples; the technical features of the above embodiments or in the different embodiments may also be combined within the idea of the invention, the steps may be implemented in any order and there are many other variations of the different aspects of the invention as described above, which are not provided in detail for the sake of brevity.
Additionally, well-known power/ground connections to Integrated Circuit (IC) chips and other components may or may not be shown within the provided figures, in order to simplify the illustration and discussion, and so as not to obscure the invention. Furthermore, the devices may be shown in block diagram form in order to avoid obscuring the invention, and also in view of the fact that specifics with respect to implementation of such block diagram devices are highly dependent upon the platform within which the present invention is to be implemented (i.e., such specifics should be well within purview of one skilled in the art). Where specific details (e.g., circuits) are set forth in order to describe example embodiments of the invention, it should be apparent to one skilled in the art that the invention can be practiced without, or with variation of, these specific details. Accordingly, the description is to be regarded as illustrative in nature and not as restrictive.
While the invention has been described in conjunction with specific embodiments thereof, many alternatives, modifications, and variations of those embodiments will be apparent to those skilled in the art in light of the foregoing description. For example, other memory architectures (e.g., dynamic RAM (DRAM)) may use the embodiments discussed.
The embodiments of the invention are intended to embrace all such alternatives, modifications and variances which fall within the broad scope of the appended claims. Therefore, any omission, modification, equivalent replacement, improvement, etc. of the present invention should be included in the scope of the present invention.

Claims (3)

1.一种事件执行方法,用于设置界面的属性,其特征在于,包括:1. An event execution method for setting the properties of an interface, characterized by comprising: 构建事件池,所述事件池包括事件执行接口标识及其对应的事件标识、事件标识对应的动态属性信息;Constructing an event pool, wherein the event pool includes an event execution interface identifier and its corresponding event identifier, and dynamic attribute information corresponding to the event identifier; 于界面设置属性信息,并于界面执行事件,调用事件执行接口,所述事件执行接口携带所述属性信息;Setting the attribute information on the interface, executing the event on the interface, and calling the event execution interface, wherein the event execution interface carries the attribute information; 根据所述事件执行接口对应的事件执行接口标识查找所述事件池,获取相应的事件标识,根据所述事件执行接口携带的属性信息,更新所述事件标识对应的动态属性信息,根据所述事件标识确定要执行的事件,根据更新的动态属性信息执行所述事件对应的业务逻辑;Search the event pool according to the event execution interface identifier corresponding to the event execution interface, obtain the corresponding event identifier, update the dynamic attribute information corresponding to the event identifier according to the attribute information carried by the event execution interface, determine the event to be executed according to the event identifier, and execute the business logic corresponding to the event according to the updated dynamic attribute information; 根据所述业务逻辑从控制层确定所需调用的底层接口,调用所述底层接口根据所述更新的动态属性信息实现具体的业务逻辑,所述业务逻辑用于实现界面功能。The underlying interface to be called is determined from the control layer according to the business logic, and the underlying interface is called to implement specific business logic according to the updated dynamic attribute information, and the business logic is used to implement the interface function. 2.一种事件执行装置,用于设置界面的属性,其特征在于,包括:2. An event execution device, used to set the properties of an interface, characterized by comprising: 事件池模块,用于保存事件执行接口标识及其对应的事件标识、事件标识对应的动态属性信息;An event pool module is used to store the event execution interface identifier and its corresponding event identifier, and dynamic attribute information corresponding to the event identifier; 界面模块,用于于界面设置属性信息,并于界面执行事件,调用事件执行接口,所述事件执行接口携带所述属性信息;An interface module is used to set attribute information on the interface, execute events on the interface, and call an event execution interface, wherein the event execution interface carries the attribute information; 执行模块,用于根据所述事件执行接口对应的事件执行接口标识查找所述事件池模块,获取相应的事件标识,根据所述事件执行接口携带的属性信息,更新所述事件标识对应的动态属性信息,根据所述事件标识确定要执行的事件,根据更新的动态属性信息执行所述事件对应的业务逻辑;An execution module, used to search the event pool module according to the event execution interface identifier corresponding to the event execution interface, obtain the corresponding event identifier, update the dynamic attribute information corresponding to the event identifier according to the attribute information carried by the event execution interface, determine the event to be executed according to the event identifier, and execute the business logic corresponding to the event according to the updated dynamic attribute information; 控制层,用于保存业务逻辑标识及对应的底层接口,以使根据所述业务逻辑从控制层确定所需调用的底层接口,调用所述底层接口根据所述更新的动态属性信息实现具体的业务逻辑,所述业务逻辑用于实现界面功能;The control layer is used to store the business logic identifier and the corresponding underlying interface, so that the underlying interface to be called is determined from the control layer according to the business logic, and the underlying interface is called to implement specific business logic according to the updated dynamic attribute information, and the business logic is used to implement the interface function; 底层接口模块,用于保存底层接口及对应的业务逻辑代码。The underlying interface module is used to store the underlying interface and the corresponding business logic code. 3.一种电子设备,包括存储器、处理器及存储在存储器上并可在处理器上运行的计算机程序,其特征在于,所述处理器执行所述程序时实现如权利要求1所述的方法。3. An electronic device comprising a memory, a processor, and a computer program stored in the memory and executable on the processor, wherein the processor implements the method according to claim 1 when executing the program.
CN201811300107.2A 2018-11-02 2018-11-02 Event execution method and device, and electronic device Active CN111142982B (en)

Priority Applications (1)

Application Number Priority Date Filing Date Title
CN201811300107.2A CN111142982B (en) 2018-11-02 2018-11-02 Event execution method and device, and electronic device

Applications Claiming Priority (1)

Application Number Priority Date Filing Date Title
CN201811300107.2A CN111142982B (en) 2018-11-02 2018-11-02 Event execution method and device, and electronic device

Publications (2)

Publication Number Publication Date
CN111142982A CN111142982A (en) 2020-05-12
CN111142982B true CN111142982B (en) 2024-11-26

Family

ID=70515362

Family Applications (1)

Application Number Title Priority Date Filing Date
CN201811300107.2A Active CN111142982B (en) 2018-11-02 2018-11-02 Event execution method and device, and electronic device

Country Status (1)

Country Link
CN (1) CN111142982B (en)

Families Citing this family (1)

* Cited by examiner, † Cited by third party
Publication number Priority date Publication date Assignee Title
CN115944917A (en) * 2023-01-29 2023-04-11 珠海金山数字网络科技有限公司 Data processing method and device

Citations (2)

* Cited by examiner, † Cited by third party
Publication number Priority date Publication date Assignee Title
CN105183569A (en) * 2015-08-31 2015-12-23 青岛海尔智能家电科技有限公司 Method and apparatus for triggering action by using event
CN107783849A (en) * 2017-09-27 2018-03-09 武汉斗鱼网络科技有限公司 Event-handling method and client

Family Cites Families (9)

* Cited by examiner, † Cited by third party
Publication number Priority date Publication date Assignee Title
JP2005521111A (en) * 2001-07-06 2005-07-14 コンピュータ アソシエイツ シンク,インコーポレイテッド Business process policy object
US7873967B2 (en) * 2006-02-27 2011-01-18 Microsoft Corporation Pluggable business logic
CN104142858B (en) * 2013-11-29 2016-09-28 腾讯科技(深圳)有限公司 Blocked task dispatching method and device
CN104123157B (en) * 2014-07-17 2017-08-29 北京京东尚科信息技术有限公司 The cross-platform service logic method for customizing and device of a kind of mobile terminal
CN105391785A (en) * 2015-11-25 2016-03-09 广州华多网络科技有限公司 Method for processing service message and server
CN106060063B (en) * 2016-06-24 2019-04-23 武汉斗鱼网络科技有限公司 A kind of filtering method and device for front-end logical entry of Internet website
CN106897072B (en) * 2017-02-28 2022-01-07 北京三快在线科技有限公司 Service engineering calling method and device and electronic equipment
CN107577540B (en) * 2017-08-31 2020-03-17 武汉斗鱼网络科技有限公司 Method, storage medium, equipment and system for realizing reporting function in video friend making
CN107635001A (en) * 2017-09-20 2018-01-26 北京京东尚科信息技术有限公司 Web scripts abnormality eliminating method and device

Patent Citations (2)

* Cited by examiner, † Cited by third party
Publication number Priority date Publication date Assignee Title
CN105183569A (en) * 2015-08-31 2015-12-23 青岛海尔智能家电科技有限公司 Method and apparatus for triggering action by using event
CN107783849A (en) * 2017-09-27 2018-03-09 武汉斗鱼网络科技有限公司 Event-handling method and client

Also Published As

Publication number Publication date
CN111142982A (en) 2020-05-12

Similar Documents

Publication Publication Date Title
EP3869403A2 (en) Image recognition method, apparatus, electronic device, storage medium and program product
CN109815261B (en) Method, device and electronic device for realizing global search function and real-time data synchronization
CN111062189B (en) Data analysis method and device and electronic equipment
CN110830280B (en) Micro-service gateway device and method and electronic equipment
CN110990008B (en) Page updating method and device, storage medium and electronic equipment
CN110737562A (en) method and system for monitoring process and electronic equipment
CN106973380B (en) A kind of method and device for switching APN
CN113590447A (en) Buried point processing method and device
CN111352993B (en) Cross-platform data synchronization method and device, and electronic device
CN116611411A (en) Business system report generation method, device, equipment and storage medium
CN112434278A (en) Bare computer authentication method, apparatus, device and medium
CN111142982B (en) Event execution method and device, and electronic device
CN110781139A (en) Teaching plan resource management system and method and electronic equipment
CN105871958A (en) Method for managing account information in centralized manner and terminal
CN112433779B (en) Application site preloading method, device and storage medium based on ERP system
CN110049535B (en) Network search method, apparatus, device and storage medium
CN111104648B (en) Software processing method and device, storage medium and electronic equipment
US10282527B2 (en) Information processing apparatus, information processing method, program, storage medium, and password entry apparatus
CN111190529B (en) Keyboard input method and device and electronic equipment
CN114327453B (en) Page display method, device, equipment and storage medium
CN111381849B (en) Software updating method and device and electronic equipment
CN110912959B (en) Equipment access method and device, management and control system and electronic equipment
CN112416410A (en) Data management method, device, computer equipment and storage medium for applet
CN108459940B (en) Configuration information modification method and device of application performance management system and electronic equipment
CN110765738A (en) System and method for generating card number and electronic equipment

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
GR01 Patent grant
GR01 Patent grant