WO2021082599A1 - Procédé et dispositif de surveillance d'image de page web, équipement électronique et support d'informations lisible par ordinateur - Google Patents

Procédé et dispositif de surveillance d'image de page web, équipement électronique et support d'informations lisible par ordinateur Download PDF

Info

Publication number
WO2021082599A1
WO2021082599A1 PCT/CN2020/107714 CN2020107714W WO2021082599A1 WO 2021082599 A1 WO2021082599 A1 WO 2021082599A1 CN 2020107714 W CN2020107714 W CN 2020107714W WO 2021082599 A1 WO2021082599 A1 WO 2021082599A1
Authority
WO
WIPO (PCT)
Prior art keywords
image
web page
loaded
query request
query
Prior art date
Application number
PCT/CN2020/107714
Other languages
English (en)
Chinese (zh)
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 WO2021082599A1 publication Critical patent/WO2021082599A1/fr

Links

Images

Classifications

    • GPHYSICS
    • G06COMPUTING; CALCULATING OR COUNTING
    • G06FELECTRIC DIGITAL DATA PROCESSING
    • G06F16/00Information retrieval; Database structures therefor; File system structures therefor
    • G06F16/90Details of database functions independent of the retrieved data types
    • G06F16/95Retrieval from the web
    • G06F16/958Organisation or management of web site content, e.g. publishing, maintaining pages or automatic linking

Definitions

  • the present disclosure relates to the field of computer technology. Specifically, the present disclosure relates to a method, device, electronic device, and computer-readable storage medium for monitoring webpage images.
  • a method for monitoring webpage images includes:
  • a webpage image monitoring device which includes:
  • the query request sending module is used to send a query request for the image in the web page when it is detected that all the page resources of the web page have been loaded;
  • the monitoring module is used to obtain the query result of the query request, and based on the query result, determine whether the image is loaded successfully.
  • an electronic device including: a processor and a memory;
  • Memory used to store computer programs
  • the processor is configured to execute the method shown in the first aspect of the present disclosure by calling a computer program.
  • a computer-readable storage medium on which a computer program is stored, and when the program is executed by a processor, the method shown in the first aspect of the present disclosure is implemented.
  • the query request for the image in the web page is sent to obtain the query result of the query request, and based on the query result, it is determined whether the image is loaded successfully. Based on this solution, the information about whether the image is loaded successfully can be obtained by initiating an image query request, thereby realizing the monitoring of whether the image is loaded successfully, and realizing the analysis of the web service quality based on whether the image is loaded successfully, and improving the web service quality Provide data support.
  • FIG. 1 is a schematic flowchart of a method for monitoring webpage images according to an embodiment of the disclosure
  • FIG. 2 is a schematic structural diagram of a webpage image monitoring device provided by an embodiment of the disclosure.
  • FIG. 3 is a schematic structural diagram of an electronic device provided by an embodiment of the disclosure.
  • a software development kit (Software Development Kit, SDK) is generally used to monitor whether an image in a web page is successfully loaded.
  • SDK Software Development Kit
  • the business party may place the SDK corresponding code for monitoring whether the image is loaded successfully in the body of the HyperText Markup Language (HTML) file of the web page.
  • HTML HyperText Markup Language
  • this may cause the SDK to monitor whether the image has been successfully loaded is still not running when the image loading has been completed. At this time, it cannot be obtained that the SDK has been loaded before the above SDK runs. Whether the image of the completed image is loaded successfully, resulting in the omission of information monitoring, and it is impossible to effectively monitor whether the image in the web page is loaded successfully.
  • the webpage image monitoring method, device, electronic device, and computer-readable storage medium provided by the embodiments of the present disclosure are intended to solve at least one of the above technical problems in the prior art.
  • FIG. 1 shows a schematic flowchart of a method for monitoring webpage images provided by an embodiment of the present disclosure. As shown in FIG. 1, the method may include:
  • Step S110 When it is detected that all page resources of the web page have been loaded, sending a query request for the image in the web page;
  • Step S120 Obtain the query result of the query request, and determine whether the image is loaded successfully based on the query result.
  • a browser loads a web page as an example.
  • the page resources may include, but are not limited to, characters, image resources, video resources, etc. in the web page.
  • a query request can be generated to query the image resource corresponding to each image in the web page, and the query request can carry an image identifier, which is convenient for distinguishing each image in the web page.
  • the image resource of the web page is successfully loaded, the image resource of the web page is cached in the browser cache, and the query result is determined based on the cache content in the browser cache.
  • the browser When the browser is loading, it encounters the page resource that needs to be obtained (take picture resource as an example), the browser may issue a picture resource acquisition request to obtain the picture resource, when the picture resource request is successful, the obtained picture resource will be cached To the browser cache; when the image resource request fails, the image resource will not be stored in the browser cache. Therefore, it is possible to determine whether the image is loaded successfully by sending a query request and querying the image resource in the browser cache. When the image resource corresponding to the image is found in the browser cache, it can be determined that the image is loaded successfully; if the image resource corresponding to the image is not found in the browser cache, it can be determined that the image has failed to load.
  • the query result can be obtained quickly, without the need to request data from the server through the network, which can avoid traffic waste.
  • the image query request is sent when it is detected that all images in the web page have been loaded. Since all image resources have been loaded at this time, it can be ensured that the query results of all query requests are obtained, thereby monitoring the page Whether all the images inside are loaded successfully, to avoid monitoring omissions.
  • the browser will load each page resource separately. In the process of loading the page resource, the page resource takes the image as an example. It may happen that some images have finished loading while others have not finished loading. , The image resources corresponding to the images that have not been loaded will not be stored in the local cache. At this time, if the corresponding image is queried in the local cache, the query results will be inaccurate and it is impossible to effectively determine whether the image is loaded successfully.
  • sending a query request for the image in the web page can ensure the accuracy of the obtained query result, so that it can accurately determine whether the image in the web page is loaded successfully.
  • these images can be analyzed to determine the cause of the load failure, and corresponding processing can be performed to ensure the user experience.
  • the method provided by the embodiment of the present disclosure is to send a query request for the image in the web page when all page resources of the web page are loaded to obtain the query result of the query request, and determine whether the image is loaded successfully based on the query result. Based on this solution, the information about whether the image is loaded successfully can be obtained by initiating an image query request, thereby realizing the monitoring of whether the image is loaded successfully, and realizing the analysis of the web service quality based on whether the image is loaded successfully, and improving the web service quality Provide data support.
  • the query request is an Extensible Markup Language Hypertext Transfer Protocol request (XML HTTP Request).
  • XML HTTP Request Extensible Markup Language Hypertext Transfer Protocol request
  • the query request may be an XML HTTP Request, and the query request may also carry request parameters corresponding to the attribute information of the image, and the attribute information may include the image type and/or the image size.
  • the above method may further include: extracting attribute information of the image based on the query result.
  • the query result is the response information of the query command.
  • the response header of the response message contains the attribute information of the image.
  • the image attribute information of the image can be extracted from the response header in the response message through regular expressions.
  • the monitoring of image attribute information can better analyze the service quality of the webpage through the monitored image attribute information, and provide better data support for improving the service quality of the webpage.
  • the query request also carries file location indication information of the image.
  • request parameters can also be set in the query request to specify the file location to be queried. For example, when querying images imported from Cascading Style Sheets (CSS) files, you can specify Query in the Style Sheets cached by the browser.
  • CSS Cascading Style Sheets
  • the foregoing method further includes:
  • the onload event corresponding to the HTML file of the web page when all the page resources of the web page are loaded, the onload event corresponding to the HTML file of the web page will be executed.
  • the onload event corresponding to the HTML file of the web page can be detected to determine all of the web page. Whether the page resource has been loaded.
  • the above method further includes:
  • the information about whether the image is loaded successfully can be sent to the server, so that the server can monitor whether the image is successfully loaded in time. In actual use, you can also choose to only upload the image.
  • the loading failure information is sent to the server.
  • FIG. 2 shows a schematic structural diagram of a webpage image monitoring device provided by an embodiment of the present disclosure.
  • the monitoring device 20 may include:
  • the query request sending module 210 is configured to send a query request for images in the web page when it is detected that all page resources of the web page are loaded;
  • the monitoring module 220 is configured to obtain the query result of the query request, and based on the query result, determine whether the image is loaded successfully.
  • the device provided by the embodiment of the present disclosure sends a query request for the image in the web page when all page resources of the web page are loaded, obtains the query result of the query request, and determines whether the image is loaded successfully based on the query result. Based on this solution, the information about whether the image is loaded successfully can be obtained by initiating an image query request, thereby realizing the monitoring of whether the image is loaded successfully, and realizing the analysis of the web service quality based on whether the image is loaded successfully, and improving the web service quality Provide data support.
  • the query request is XML HTTP Request.
  • the query request also carries request parameters corresponding to the attribute information of the image
  • the aforementioned monitoring device further includes:
  • the attribute information extraction module is used to extract the attribute information of the image based on the query result.
  • the file location indication information of the image is also carried in the query request. .
  • the image resource of the web page is successfully loaded, the image resource of the web page is cached in the browser cache, and the query result is determined based on the cached content in the browser cache.
  • the foregoing monitoring device further includes:
  • the page loading condition determination module is used to determine that all page resources of the web page are loaded when the onload event corresponding to the HTML file of the web page is detected.
  • the aforementioned monitoring module is also used to send information about whether the image is successfully loaded to the server.
  • Terminal devices in the embodiments of the present disclosure may include, but are not limited to, mobile phones, notebook computers, digital broadcast receivers, PDAs (personal digital assistants), PADs (tablets), PMPs (portable multimedia players), vehicle-mounted terminals (e.g. Mobile terminals such as car navigation terminals) and fixed terminals such as digital TVs, desktop computers, etc.
  • the electronic device shown in FIG. 3 is only an example, and should not bring any limitation to the function and scope of use of the embodiments of the present disclosure.
  • the electronic device includes a memory and a processor.
  • the processor here may be referred to as the processing device 601 shown below, and the memory may include a read-only memory (ROM) 602, a random access memory (RAM) 603, and a storage device below.
  • ROM read-only memory
  • RAM random access memory
  • 608 At least one of 608, as follows:
  • the electronic device 600 may include a processing device (such as a central processing unit, a graphics processor, etc.) 601, which may be loaded into a random access device according to a program stored in a read-only memory (ROM) 602 or from a storage device 608.
  • the program in the memory (RAM) 603 executes various appropriate actions and processing.
  • various programs and data required for the operation of the electronic device 600 are also stored.
  • the processing device 601, the ROM 602, and the RAM 603 are connected to each other through a bus 604.
  • An input/output (I/O) interface 605 is also connected to the bus 604.
  • the following devices can be connected to the I/O interface 605: including input devices 606 such as touch screens, touch pads, keyboards, mice, cameras, microphones, accelerometers, gyroscopes, etc.; including, for example, liquid crystal displays (LCD), speakers, vibration An output device 607 such as a device; a storage device 608 such as a magnetic tape, a hard disk, etc.; and a communication device 609.
  • the communication device 609 may allow the electronic device 600 to perform wireless or wired communication with other devices to exchange data.
  • FIG. 3 shows an electronic device 600 having various devices, it should be understood that it is not required to implement or have all of the illustrated devices. It may alternatively be implemented or provided with more or fewer devices.
  • the process described above with reference to the flowchart can be implemented as a computer software program.
  • the embodiments of the present disclosure include a computer program product, which includes a computer program carried on a non-transitory computer readable medium, and the computer program contains program code for executing the method shown in the flowchart.
  • the computer program may be downloaded and installed from the network through the communication device 609, or installed from the storage device 608, or installed from the ROM 602.
  • the processing device 601 the above-mentioned functions defined in the method of the embodiment of the present disclosure are executed.
  • the aforementioned computer-readable medium in the present disclosure may be a computer-readable signal medium or a computer-readable storage medium, or any combination of the two.
  • the computer-readable storage medium may be, for example, but not limited to, an electrical, magnetic, optical, electromagnetic, infrared, or semiconductor system, device, or device, or a combination of any of the above. More specific examples of computer-readable storage media may include, but are not limited to: electrical connections with one or more wires, portable computer disks, hard disks, random access memory (RAM), read-only memory (ROM), erasable Programmable read only memory (EPROM or flash memory), optical fiber, portable compact disk read only memory (CD-ROM), optical storage device, magnetic storage device, or any suitable combination of the above.
  • a computer-readable storage medium may be any tangible medium that contains or stores a program, and the program may be used by or in combination with an instruction execution system, apparatus, or device.
  • a computer-readable signal medium may include a data signal propagated in a baseband or as a part of a carrier wave, and a computer-readable program code is carried therein. This propagated data signal can take many forms, including but not limited to electromagnetic signals, optical signals, or any suitable combination of the foregoing.
  • the computer-readable signal medium may also be any computer-readable medium other than the computer-readable storage medium.
  • the computer-readable signal medium may send, propagate or transmit the program for use by or in combination with the instruction execution system, apparatus, or device .
  • the program code contained on the computer-readable medium can be transmitted by any suitable medium, including but not limited to: wire, optical cable, RF (Radio Frequency), etc., or any suitable combination of the above.
  • the client and server can communicate with any currently known or future developed network protocol such as HTTP (HyperText Transfer Protocol), and can communicate with digital data in any form or medium.
  • Communication e.g., communication network
  • Examples of communication networks include local area networks (“LAN”), wide area networks (“WAN”), the Internet (for example, the Internet), and end-to-end networks (for example, ad hoc end-to-end networks), as well as any currently known or future research and development network of.
  • the above-mentioned computer-readable medium may be included in the above-mentioned electronic device; or it may exist alone without being assembled into the electronic device.
  • the above-mentioned computer-readable medium carries one or more programs.
  • the electronic device When the above-mentioned one or more programs are executed by the electronic device, the electronic device: When detecting that all page resources of the web page are loaded, send the Image query request; obtain the query result of the query request, and determine whether the image is loaded successfully based on the query result.
  • the computer program code used to perform the operations of the present disclosure can be written in one or more programming languages or a combination thereof.
  • the above-mentioned programming languages include but are not limited to object-oriented programming languages such as Java, Smalltalk, C++, and Including conventional procedural programming languages-such as "C" language or similar programming languages.
  • the program code can be executed entirely on the user's computer, partly on the user's computer, executed as an independent software package, partly on the user's computer and partly executed on a remote computer, or entirely executed on the remote computer or server.
  • the remote computer can be connected to the user's computer through any kind of network, including a local area network (LAN) or a wide area network (WAN), or it can be connected to an external computer (for example, using an Internet service provider to pass Internet connection).
  • LAN local area network
  • WAN wide area network
  • each block in the flowchart or block diagram may represent a module, program segment, or part of code, and the module, program segment, or part of code contains one or more for realizing the specified logical function Executable instructions.
  • the functions marked in the block may also occur in a different order from the order marked in the drawings. For example, two blocks shown in succession can actually be executed substantially in parallel, and they can sometimes be executed in the reverse order, depending on the functions involved.
  • each block in the block diagram and/or flowchart, and the combination of the blocks in the block diagram and/or flowchart can be implemented by a dedicated hardware-based system that performs the specified functions or operations Or it can be realized by a combination of dedicated hardware and computer instructions.
  • the modules or units involved in the embodiments described in the present disclosure can be implemented in software or hardware. Among them, the name of the module or unit does not constitute a limitation on the unit itself under certain circumstances.
  • the monitoring module can also be described as "a module that determines whether the image is loaded successfully based on the query result".
  • exemplary types of hardware logic components include: Field Programmable Gate Array (FPGA), Application Specific Integrated Circuit (ASIC), Application Specific Standard Product (ASSP), System on Chip (SOC), Complex Programmable Logical device (CPLD) and so on.
  • FPGA Field Programmable Gate Array
  • ASIC Application Specific Integrated Circuit
  • ASSP Application Specific Standard Product
  • SOC System on Chip
  • CPLD Complex Programmable Logical device
  • a machine-readable medium may be a tangible medium, which may contain or store a program for use by the instruction execution system, apparatus, or device or in combination with the instruction execution system, apparatus, or device.
  • the machine-readable medium may be a machine-readable signal medium or a machine-readable storage medium.
  • the machine-readable medium may include, but is not limited to, an electronic, magnetic, optical, electromagnetic, infrared, or semiconductor system, device, or device, or any suitable combination of the foregoing.
  • machine-readable storage media would include electrical connections based on one or more wires, portable computer disks, hard disks, random access memory (RAM), read-only memory (ROM), erasable programmable read-only memory (EPROM or flash memory), optical fiber, portable compact disk read only memory (CD-ROM), optical storage device, magnetic storage device, or any suitable combination of the foregoing.
  • RAM random access memory
  • ROM read-only memory
  • EPROM or flash memory erasable programmable read-only memory
  • CD-ROM compact disk read only memory
  • magnetic storage device or any suitable combination of the foregoing.
  • the present disclosure provides a method for monitoring webpage images, including:
  • the above-mentioned query request is an XML HTTP Request.
  • the query request also carries request parameters corresponding to the attribute information of the image
  • the monitoring method of the webpage image described above further includes:
  • the attribute information of the image is extracted.
  • the file location indication information of the image is also carried in the query request.
  • the image resource of the webpage is loaded successfully, the image resource of the webpage is cached in the browser cache, and the query result is determined based on the cached content in the browser cache.
  • the above-mentioned monitoring method further includes:
  • the above-mentioned monitoring method further includes:
  • the present disclosure provides a webpage image monitoring device, including:
  • the query request sending module is used to send a query request for the image in the web page when it is detected that all the page resources of the web page are loaded, and the query request carries the image identifier;
  • the monitoring module is used to obtain the query result of the query request, and based on the query result, determine whether the image is loaded successfully.
  • the query request is an extensible markup language hypertext transfer protocol request XML HTTP Request.
  • the query request also carries request parameters corresponding to the attribute information of the image
  • the aforementioned monitoring device further includes:
  • the attribute information extraction module is used to extract the attribute information of the image based on the query result.
  • the attribute information includes image type and/or image size.
  • the image resource of the webpage page is successfully loaded, the image resource of the webpage page is cached in the browser cache, and the query result is determined based on the cached content in the browser cache.
  • the foregoing monitoring device further includes:
  • the page loading condition determination module is used to determine that all page resources of the web page are loaded when the onload event corresponding to the HTML file of the web page is detected.
  • the above-mentioned monitoring module is further used to send information about whether the image is successfully loaded to the server.

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)
  • Information Transfer Between Computers (AREA)

Abstract

Procédé et dispositif de surveillance d'image de page web, équipement électronique et support d'informations lisible par ordinateur. Le procédé consiste à : lors de la détection que le chargement de toutes les ressources de page d'une page web est achevé, envoyer une demande d'interrogation pour une image de la page web (S110) ; et acquérir le résultat d'interrogation de la demande d'interrogation et sur la base du résultat d'interrogation, déterminer si l'Image est chargée avec succès (S120). Selon le procédé, une demande d'interrogation pour une image d'une page web est envoyée lorsque le chargement de toutes les ressources de page de la page web est achevé, le résultat d'interrogation de la demande d'interrogation est acquis, et on détermine si l'image est chargée avec succès sur la base du résultat d'interrogation. Sur la base du procédé, on surveille si une image est chargée avec succès, une qualité de service de page web est analysée selon que l'image est chargée avec succès, et un support de données pour l'amélioration de la qualité de service de page web est fourni.
PCT/CN2020/107714 2019-10-28 2020-08-07 Procédé et dispositif de surveillance d'image de page web, équipement électronique et support d'informations lisible par ordinateur WO2021082599A1 (fr)

Applications Claiming Priority (2)

Application Number Priority Date Filing Date Title
CN201911032112.4 2019-10-28
CN201911032112.4A CN110795670A (zh) 2019-10-28 2019-10-28 网页图像的监控方法、装置、电子设备及可读存储介质

Publications (1)

Publication Number Publication Date
WO2021082599A1 true WO2021082599A1 (fr) 2021-05-06

Family

ID=69441576

Family Applications (1)

Application Number Title Priority Date Filing Date
PCT/CN2020/107714 WO2021082599A1 (fr) 2019-10-28 2020-08-07 Procédé et dispositif de surveillance d'image de page web, équipement électronique et support d'informations lisible par ordinateur

Country Status (2)

Country Link
CN (1) CN110795670A (fr)
WO (1) WO2021082599A1 (fr)

Families Citing this family (1)

* Cited by examiner, † Cited by third party
Publication number Priority date Publication date Assignee Title
CN110795670A (zh) * 2019-10-28 2020-02-14 北京字节跳动网络技术有限公司 网页图像的监控方法、装置、电子设备及可读存储介质

Citations (4)

* Cited by examiner, † Cited by third party
Publication number Priority date Publication date Assignee Title
CN103914302A (zh) * 2014-04-02 2014-07-09 北京京东尚科信息技术有限公司 一种网页加载进度监控方法和装置
US20170123617A1 (en) * 2014-03-26 2017-05-04 Beijing Qihoo Technology Company Limited Picture loading apparatus and method
CN108108089A (zh) * 2016-11-24 2018-06-01 中国移动通信有限公司研究院 一种图片加载方法及装置
CN110795670A (zh) * 2019-10-28 2020-02-14 北京字节跳动网络技术有限公司 网页图像的监控方法、装置、电子设备及可读存储介质

Family Cites Families (2)

* Cited by examiner, † Cited by third party
Publication number Priority date Publication date Assignee Title
US10296653B2 (en) * 2010-09-07 2019-05-21 F5 Networks, Inc. Systems and methods for accelerating web page loading
CN103593466B (zh) * 2013-11-26 2017-08-04 优视科技有限公司 网页加载方法及客户端和服务器

Patent Citations (4)

* Cited by examiner, † Cited by third party
Publication number Priority date Publication date Assignee Title
US20170123617A1 (en) * 2014-03-26 2017-05-04 Beijing Qihoo Technology Company Limited Picture loading apparatus and method
CN103914302A (zh) * 2014-04-02 2014-07-09 北京京东尚科信息技术有限公司 一种网页加载进度监控方法和装置
CN108108089A (zh) * 2016-11-24 2018-06-01 中国移动通信有限公司研究院 一种图片加载方法及装置
CN110795670A (zh) * 2019-10-28 2020-02-14 北京字节跳动网络技术有限公司 网页图像的监控方法、装置、电子设备及可读存储介质

Non-Patent Citations (1)

* Cited by examiner, † Cited by third party
Title
JACK_MENG: "How to check if a page including images is loaded with JavaScript", 12 January 2017 (2017-01-12), XP055809410, Retrieved from the Internet <URL:https://www.cnblogs.com/mq0036/p/6278498.html> *

Also Published As

Publication number Publication date
CN110795670A (zh) 2020-02-14

Similar Documents

Publication Publication Date Title
WO2021082693A1 (fr) Procédé et dispositif pour acquérir une durée de chargement d&#39;image de page web, et dispositif électronique
WO2021082600A1 (fr) Procédé et appareil de contrôle d&#39;image de page web, dispositif électronique et support d&#39;informations lisible par ordinateur
WO2021223752A1 (fr) Procédé et appareil d&#39;affichage et dispositif électronique
WO2021135626A1 (fr) Procédé et appareil de sélection d&#39;éléments de menu, support lisible et dispositif électronique
WO2021068634A1 (fr) Procédé et appareil de saut vers une page, dispositif électronique et support d&#39;informations lisible par ordinateur
US20240012641A1 (en) Model construction method and apparatus, and medium and electronic device
WO2021249196A1 (fr) Procédé et appareil de lecture vidéo, support de stockage et dispositif électronique
WO2021190129A1 (fr) Procédé et dispositif de traitement de page, dispositif électronique et support de stockage lisible par ordinateur
WO2022199376A1 (fr) Procédé et appareil d&#39;impression de contenu, dispositif, et support de stockage
WO2022111591A1 (fr) Procédé et appareil de génération de page, support de stockage et dispositif électronique
CN112269959B (zh) 展示内容的控制方法、装置、可读介质和电子设备
CN111258736B (zh) 信息处理方法、装置和电子设备
US20220391229A1 (en) Icon updating method and apparatus, and electronic device
WO2022105590A1 (fr) Procédé et appareil de détection de certificat de nom de domaine, dispositif électronique et support lisible par ordinateur
WO2022233311A1 (fr) Procédé et appareil d&#39;affichage et dispositif électronique
WO2022218028A1 (fr) Procédé et appareil de chargement de page, dispositif et support de stockage
WO2021082599A1 (fr) Procédé et dispositif de surveillance d&#39;image de page web, équipement électronique et support d&#39;informations lisible par ordinateur
CN110427584A (zh) 页面生成方法、装置、电子设备及计算机可读存储介质
WO2023273576A1 (fr) Procédé et appareil de traitement de requêtes anormales, dispositif électronique et support de stockage
CN112084441A (zh) 信息检索方法、装置和电子设备
WO2022151835A1 (fr) Procédé et appareil de traitement de message échantillon
CN112817874B (zh) 一种用户界面的测试方法、装置、设备及介质
WO2021233379A1 (fr) Procédé, appareil et dispositif de configuration d&#39;effets spéciaux vidéo, et support de stockage
CN112732457B (zh) 图像传输方法、装置、电子设备和计算机可读介质
CN111581556B (zh) 页面数据处理方法、装置、电子设备和可读介质

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: 20881638

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: 20881638

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 1205A DATED 310822)

122 Ep: pct application non-entry in european phase

Ref document number: 20881638

Country of ref document: EP

Kind code of ref document: A1