WO2016177250A1 - Procédé et appareil de rendu de page de client - Google Patents

Procédé et appareil de rendu de page de client Download PDF

Info

Publication number
WO2016177250A1
WO2016177250A1 PCT/CN2016/078605 CN2016078605W WO2016177250A1 WO 2016177250 A1 WO2016177250 A1 WO 2016177250A1 CN 2016078605 W CN2016078605 W CN 2016078605W WO 2016177250 A1 WO2016177250 A1 WO 2016177250A1
Authority
WO
WIPO (PCT)
Prior art keywords
component
page
layout template
data
client
Prior art date
Application number
PCT/CN2016/078605
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 WO2016177250A1 publication Critical patent/WO2016177250A1/fr

Links

Images

Classifications

    • GPHYSICS
    • G06COMPUTING; CALCULATING OR COUNTING
    • G06FELECTRIC DIGITAL DATA PROCESSING
    • G06F9/00Arrangements for program control, e.g. control units
    • G06F9/06Arrangements for program control, e.g. control units using stored programs, i.e. using an internal store of processing equipment to receive or retain programs
    • G06F9/44Arrangements for executing specific programs

Definitions

  • the present application relates to the field of network technologies, and in particular, to a client page rendering method and apparatus.
  • each version of the client displays a product or service layout template that is fixed.
  • the layout template specifies which display areas are included in the display page, and which data is displayed in each display area, by associating different areas in the layout template.
  • the data source is rendered to get the display page of different products.
  • the layout templates in the client are not suitable for displaying these new products, you need to develop a new version of the client to increase the display of new products.
  • the layout template leads to higher development costs.
  • the present application provides a client page rendering method and apparatus.
  • a first aspect of the present application provides a client page rendering method; the method includes:
  • the client page rendering method before the receiving the page detail data, further includes:
  • the rendering operation is performed according to the default layout template and the page basic data stored by the client, and the basic information display page of the target page is obtained.
  • the determining the original layout template of the target page includes:
  • the preset layout template does not exist, it is determined that the default layout template is the original layout template.
  • the corresponding component description item is generated according to the component implementation class and component data, including:
  • the component translation function is called to process the component data to obtain a corresponding component description item.
  • a second aspect of the present application provides a client page rendering apparatus; the apparatus includes:
  • a data parsing unit configured to receive and parse page detail data sent by the server, and determine component data and an original layout template of the target page;
  • a component class search unit configured to search for a component implementation class corresponding to each component key value recorded in the original layout template according to a preset first mapping between the key value and the implementation class name;
  • a component translation unit configured to generate a corresponding component description item according to the component implementation class and the component data
  • a target template generating unit configured to summarize each component description item to generate a target layout template
  • the detailed information rendering unit is configured to perform a rendering operation according to the target layout template to obtain a detailed information display page of the target page.
  • the client page rendering apparatus further includes:
  • a basic information rendering unit configured to acquire basic page data according to a uniform resource locator URL of the target page before the data parsing unit receives the page detail data, and execute according to a default layout template and page basic data stored by the client The rendering operation gets the basic information display page of the target page.
  • the data parsing unit includes:
  • a layout template determining module configured to determine whether a preset layout template exists in the parsing result of the page detail data, and if the preset layout template exists, determining the preset layout template as an original layout template, otherwise determining The default layout template is the original layout template.
  • the component translation unit includes:
  • a translation function search module configured to search for a component translation function corresponding to the component implementation class according to a preset second mapping between the implementation class name and the function;
  • the component data processing module is configured to invoke the component translation function to process the component data to obtain a corresponding component description item.
  • the original layout template records only the key values of each component and the location information thereof, and searches for the corresponding implementation class according to the key value when performing page rendering, so that the implementation class corresponding to the same component can be restored.
  • Used for different layout templates so when a new product appears, or the corresponding preset layout template is designed for the new product, and added to the page details data to return to the client, and the design new product corresponding
  • you preset a layout template you only need to consider the required component key value and its position on the page. You don't need to think about how to implement the component, so you can reduce the design difficulty of the original layout template for new products.
  • FIG. 1 is a flowchart of a method for rendering a client page according to an embodiment of the present application.
  • FIG. 2 is a signal flow diagram of a client page rendering method provided by an embodiment of the present application.
  • FIG. 3 is a flowchart of a method for determining an original layout template in a client page rendering method provided by an embodiment of the present application.
  • FIG. 4 is a block diagram of a client page rendering apparatus according to an embodiment of the present application.
  • FIG. 5 is a block diagram of another client page rendering apparatus provided by an embodiment of the present application.
  • FIG. 1 is a flowchart of a method for rendering a client page according to an embodiment of the present application. As shown in Figure 1, the method includes the following steps.
  • the embodiment of the present application adopts a componentized layout manner, that is, a display page is drawn in units of components, and each component represents at least one element in the page, such as a product preview image, a text box displaying a product name, etc., and different components are combined or Different layout templates can be obtained by setting the same component in different locations.
  • the embodiment of the present application sets a corresponding key value for each component and implements the implementation class of the component, and pre-stores the mapping relationship between the key value of each component and the implementation class that implements the component in the client.
  • the client converts the original layout template into the target layout template by performing the above steps S12 to S14, the target The component description item corresponding to each component is recorded in the layout template, and the corresponding page element is drawn according to each component description item, and finally the target page is obtained.
  • the original layout template records only the key values of each component and the location information thereof, and searches for the corresponding implementation class according to the key value when performing page rendering, so that the implementation class corresponding to the same component can be restored.
  • Used for different layout templates so when a new product appears, or the corresponding preset layout template is designed for the new product, and added to the page details data to return to the client, and the design new product corresponding
  • you preset a layout template you only need to consider the required component key value and its position on the page. You don't need to think about how to implement the component, so you can reduce the design difficulty of the original layout template for new products.
  • the program corresponding to the above page rendering method can also be divided into three levels, which are a data layer, a componentized template translation layer and a UI layer from bottom to top; wherein the above step S11 is performed by The data layer is executed, steps S12 to S14 are performed by the componentized template translation layer, and step S15 is performed by the UI layer.
  • step S11 the following steps are further included:
  • the page basic data is obtained according to the uniform resource locator URL of the target page, and the rendering operation is performed according to the default layout template and the page basic data, and the basic information display page of the target page is obtained.
  • the process of obtaining the page detail data from the server and rendering the detailed information display page takes a certain time.
  • the client receives the page display instruction and then services the service.
  • the request is sent to obtain the corresponding page detail data
  • the basic information of the target page is obtained by analyzing the Uniform Resoure Locator (URL) of the target page to be displayed, and according to the default layout stored by the client.
  • the template is rendered to get the basic information display page of the target page.
  • the basic information may include a name, a header, a price, and the like of the product, and the step of rendering the basic information display page by the foregoing is directly performed by the UI layer.
  • the client page rendering method provided by the present application is performed with reference to the signal flow diagram shown in FIG. 2 Explain in detail.
  • step S21 the client receives a page display instruction sent by the user; after receiving the instruction, the client sends a page detail data acquisition request to the server, that is, step S22, and according to the default.
  • the URL of the layout template and the target page performs the first rendering operation to obtain the basic information display page, that is, step S23; when the server returns the page detail data, the client receives the page detail data, as in step S24; and in step S25, the client
  • the end parses the page detail data to determine the component data of the target page and the original layout template, and performs a secondary rendering operation according to the component data and the original layout template to obtain a detailed information display page of the target page, and the specific content of the secondary rendering operation.
  • the steps are as described in steps S12 to S15 above, and are not described herein again.
  • the client performs the rendering operation twice, wherein the first rendering operation does not depend on the data returned by the server, and can be executed in a short time to obtain a page for displaying basic information, thereby avoiding obtaining detailed information.
  • the page display window appears blank for a long time, which improves the user experience.
  • the determining the original layout template of the target page in the foregoing step S11 may include the following steps:
  • the data object description rule json ie, JavaScript Object Notation
  • JavaScript Object Notation based on the JavaScript language
  • each data object related to the preset layout template is named “name: The value is recorded in the form of a plurality of data objects forming a json string; correspondingly, as shown in FIG. 3, the target can be determined by the following steps
  • the original layout template for the page :
  • step S111 determining whether there is a json string in the page detail data, if yes, executing step S112, otherwise performing step S115;
  • step S113 determining whether the json string can be successfully parsed, obtaining a layout template, if successful parsing, step S114 is performed, otherwise step S115 is performed;
  • the parsed layout template is the preset layout template, that is, the preset layout template exists in the page detail data, so the preset is The layout template is marked as the original layout template of the target page; if there is no json string, or the json string cannot be successfully parsed, it is determined that the preset layout template does not exist in the page detail data, so the default layout template is marked as the original layout template of the target page. .
  • the component description item generated according to the component implementation class and the component data described in the foregoing step S13 includes the following steps:
  • the component translation function is called to process the component data to obtain a corresponding component description item.
  • the client is preset with two mapping tables, one of which records a mapping relationship between the component key value and the class name of the component implementation class, that is, the first mapping.
  • the other record has a mapping relationship between the class name of the component implementation class and the component translation function, that is, the second mapping described above.
  • the client performs the following operations on the component key values in the original layout template to obtain corresponding component description items: the component implementation class corresponding to the component key value is searched based on the first mapping, and then the component implementation class is included based on the second mapping
  • the component translation function initializes the component translation function, reads the corresponding field in the component data as input data, and runs the component translation function to obtain the corresponding component description item.
  • mapping table-based searching method is beneficial to realize multiplexing and expansion of components, that is, when new components need to be added according to product display requirements, only need to add corresponding mapping relationships in two mapping tables, according to the new
  • the key value of the component is found to the corresponding component translation function, and the corresponding component description item is obtained.
  • FIG. 4 is a structural block diagram of a client page rendering apparatus according to an embodiment of the present application.
  • the apparatus includes: a data parsing unit 110, a component class searching unit 120, a component translating unit 130, a target template generating unit 140, and a detail information rendering unit 150.
  • the data parsing unit 110 is configured to receive and parse the page detail data sent by the server, and determine the component data of the target page and the original layout template.
  • the component class search unit 120 is configured to search for a component implementation class corresponding to each component key value searched in the original layout template according to a preset first mapping between the key value and the implementation class name.
  • the component translation unit 130 is configured to generate a corresponding component description item according to the component implementation class and component data.
  • the target template generation unit 140 is configured to summarize the respective component description item generation target layout templates.
  • the detailed information rendering unit 150 is configured to perform a rendering operation according to the target layout template Do, get the details information display page of the target page.
  • the original layout template records only the key values of each component and the location information thereof.
  • the component class searching unit searches for the corresponding implementation class according to the key value, so that the same component corresponds.
  • the implementation class can be reused for different layout templates, so when a new product appears, or a corresponding preset layout template is designed for the new product, and added to the page detail data to return to the client, and the new design Adding a preset layout template corresponding to the product only needs to consider the required component key value and its position on the page, and does not need to consider how to implement the component, thereby reducing the design difficulty of the original layout template applicable to the newly added product; Or design a specific new component for the new product, and add a mapping relationship between the component key value and the component implementation class to the client, so that the new component can be found and called without modifying the query code.
  • Implementation class is
  • the embodiment of the present application can reduce the design difficulty of the layout template, and the component and the layout template have reusability and scalability.
  • the new product needs to be displayed, there is no need to develop and release a new version of the client, thereby improving the utilization of the client. Rate, reduce development costs.
  • the client page rendering apparatus further includes: a basic information rendering unit 160.
  • the basic information rendering unit 160 is configured to obtain the page basic data according to the uniform resource locator URL of the target page before the data parsing unit 110 receives the page detail data, and according to the default layout template and the page basic stored by the client.
  • the data performs a rendering operation to get a basic information display page of the target page.
  • the rendering operation is performed according to the URL of the target page and the default layout template, and the basic information display page is obtained. , to avoid showing details Before the page, the page display window appears blank for a long time, which improves the user experience.
  • the data parsing unit belongs to the data layer
  • the component class search unit, the component translation unit and the target target generating unit belong to the componentized template translation layer
  • the detailed information Both the rendering unit and the basic information rendering unit belong to the UI layer.
  • the data parsing unit 110 includes at least: a layout template determining module, and the layout template determining module is configured to determine whether a preset layout template exists in the parsing result of the page detail data. If the preset layout template exists, it is determined that the preset layout template is an original layout template, otherwise the default layout template is determined to be the original layout template.
  • a preset layout template suitable for the newly added product or service may be set in the corresponding page detail data, so that the layout template determining module will give the preset layout.
  • the template is used as the original layout template of the target page, and performs component data processing and rendering operations to obtain a detailed information display page with the best display effect; and for the original product or service, the page detail data may not set the data related to the layout template, thereby
  • the layout template determination module uses the default layout template pre-stored by the client as the original layout template. Since the default layout template is designed according to the original product and service, the default layout template can also be used for the original product or service. Good details display page.
  • the component translation unit 130 includes a translation function lookup module and a component data processing module.
  • the translation function lookup module is configured to search for a component translation function corresponding to the component implementation class according to a preset second mapping between the implementation class name and the function.
  • the component data processing module is configured to invoke the component translation function to process the component data to obtain a corresponding component description item.
  • mapping table-based component implementation class and component translation function search mode is beneficial to realize multiplexing and expansion of components, that is, when new components need to be added according to product display requirements, only need to add corresponding in two mapping tables. Mapping the relationship, you can find the corresponding component translation function according to the key value of the newly added component, and then get the corresponding component description item.
  • the embodiment of the present application further provides a computer storage medium, such as a ROM, a random access memory (RAM), a CD-ROM, a magnetic tape, a floppy disk, and an optical data storage device.
  • the computer storage medium stores a program.
  • the program in the storage medium is executed by the processor of the terminal device, the terminal device is enabled to perform some or all of the steps of the client page rendering method described in the foregoing method embodiments.

Landscapes

  • Engineering & Computer Science (AREA)
  • Software Systems (AREA)
  • Theoretical Computer Science (AREA)
  • Physics & Mathematics (AREA)
  • General Engineering & Computer Science (AREA)
  • General Physics & Mathematics (AREA)
  • Document Processing Apparatus (AREA)
  • Information Transfer Between Computers (AREA)

Abstract

La présente invention concerne un procédé et un appareil de rendu de page de client. Un modèle de disposition d'origine n'enregistre que des valeurs clés souhaitées de divers composants et leurs informations de position, de façon à pouvoir rechercher des classes de mise en œuvre de composants correspondantes prémémorisées dans un client conformément aux valeurs clés du modèle de disposition d'origine et à générer en outre des entrées de description de composants correspondantes en combinaison avec des données de composants de données de détails de page envoyées par un serveur, et à pouvoir obtenir une page de présentation d'informations de détails par exécution d'opérations de rendu de page conformément à un modèle de disposition cible constitué des diverses entrées de description de composants. On peut voir que les classes de mise en œuvre de composants et le modèle de disposition d'origine ont tous deux une capacité de réutilisation et d'extensibilité. Lorsque la présentation d'un produit ajouté est demandée, seule la valeur clé d'un composant demandé par un modèle de disposition prédéfini correspondant au produit ajouté et sa position sur une page doivent être prises en compte, sans qu'il soit nécessaire de tenir compte de la manière dont le composant est mis en œuvre, ce qui réduit la difficulté de conception de modèles de disposition ; de plus, le développement et la diffusion d'une nouvelle version du client ne sont pas nécessaires, ce qui améliore le taux d'utilisation du client et abaisse les coûts de développement.
PCT/CN2016/078605 2015-05-05 2016-04-06 Procédé et appareil de rendu de page de client WO2016177250A1 (fr)

Applications Claiming Priority (2)

Application Number Priority Date Filing Date Title
CN201510224682.9 2015-05-05
CN201510224682.9A CN106202096A (zh) 2015-05-05 2015-05-05 客户端页面渲染方法及装置

Publications (1)

Publication Number Publication Date
WO2016177250A1 true WO2016177250A1 (fr) 2016-11-10

Family

ID=57217444

Family Applications (1)

Application Number Title Priority Date Filing Date
PCT/CN2016/078605 WO2016177250A1 (fr) 2015-05-05 2016-04-06 Procédé et appareil de rendu de page de client

Country Status (3)

Country Link
CN (1) CN106202096A (fr)
HK (1) HK1231588A1 (fr)
WO (1) WO2016177250A1 (fr)

Cited By (28)

* Cited by examiner, † Cited by third party
Publication number Priority date Publication date Assignee Title
CN108446116A (zh) * 2018-02-26 2018-08-24 平安普惠企业管理有限公司 应用程序页面的生成方法、装置、计算机设备和存储介质
CN108874384A (zh) * 2018-05-31 2018-11-23 康键信息技术(深圳)有限公司 终端设备、服务器、网页数据处理方法和计算机存储介质
CN109271607A (zh) * 2018-08-17 2019-01-25 阿里巴巴集团控股有限公司 用户页面布局检测方法和装置、电子设备
CN110121094A (zh) * 2019-06-20 2019-08-13 广州酷狗计算机科技有限公司 视频合拍模板的显示方法、装置、设备及存储介质
CN110287472A (zh) * 2019-06-28 2019-09-27 湖南御家科技有限公司 一种报表配置方法、系统、设备及计算机可读存储介质
CN110727434A (zh) * 2019-10-21 2020-01-24 百度在线网络技术(北京)有限公司 渲染方法、装置、电子设备及存储介质
CN110889067A (zh) * 2018-09-10 2020-03-17 广州虎牙信息科技有限公司 页面的渲染方法、装置、设备及存储介质
CN111061478A (zh) * 2019-12-11 2020-04-24 政采云有限公司 一种页面表单修改方法、装置、设备及可读存储介质
CN111324390A (zh) * 2020-02-20 2020-06-23 苏宁云计算有限公司 实现app内容可配置和实时更新的装置及方法
CN111581567A (zh) * 2019-02-18 2020-08-25 阿里巴巴集团控股有限公司 一种页面生成方法及装置
CN111611514A (zh) * 2020-04-11 2020-09-01 上海淇玥信息技术有限公司 一种基于用户登录信息的页面展示方法、装置和电子设备
CN112083990A (zh) * 2020-08-28 2020-12-15 山东英信计算机技术有限公司 一种智能配置监控首页的方法、装置、设备及存储介质
CN112256445A (zh) * 2020-07-24 2021-01-22 北京沃东天骏信息技术有限公司 基于应用程序的数据处理方法、装置、设备及存储介质
CN112416334A (zh) * 2019-08-23 2021-02-26 腾讯科技(深圳)有限公司 一种页面配置方法、装置、设备及存储介质
CN112433728A (zh) * 2020-12-09 2021-03-02 中国建设银行股份有限公司 网站构建的方法、装置、电子设备以及存储介质
CN112631580A (zh) * 2019-09-24 2021-04-09 阿里巴巴集团控股有限公司 数据处理方法、装置及计算设备
CN112631588A (zh) * 2020-12-28 2021-04-09 北京五八信息技术有限公司 文件生成方法、装置、电子设备和计算机可读介质
CN112800724A (zh) * 2020-12-29 2021-05-14 杭州涂鸦信息技术有限公司 可视化配置模板的可读文件导出方法及相关装置
CN112800370A (zh) * 2021-01-28 2021-05-14 金蝶蝶金云计算有限公司 业务单据的处理方法、装置、计算机设备和存储介质
CN112862558A (zh) * 2019-11-28 2021-05-28 阿里巴巴集团控股有限公司 产品详情页面的生成方法和系统、数据处理方法
CN113190759A (zh) * 2021-05-21 2021-07-30 上海微盟企业发展有限公司 一种网页生成方法、装置、设备及计算机可读存储介质
CN113268261A (zh) * 2021-07-16 2021-08-17 北京乐学帮网络技术有限公司 一种页面内容展示方法、装置以及电子设备
CN113419726A (zh) * 2021-06-22 2021-09-21 康键信息技术(深圳)有限公司 商品详情页面生成方法、装置、设备及存储介质
CN113590119A (zh) * 2021-07-29 2021-11-02 远光软件股份有限公司 页面创建方法、电子设备及存储介质
CN113703860A (zh) * 2020-05-09 2021-11-26 中国人寿财产保险股份有限公司 一种动态配置app的系统和方法
CN113760253A (zh) * 2021-01-08 2021-12-07 北京沃东天骏信息技术有限公司 前端渲染方法、装置、设备、介质及程序产品
CN114756552A (zh) * 2022-04-21 2022-07-15 湖南快乐阳光互动娱乐传媒有限公司 数据聚合方法及装置
CN115543323A (zh) * 2022-11-29 2022-12-30 共道网络科技有限公司 一种页面开发方法及装置

Families Citing this family (22)

* Cited by examiner, † Cited by third party
Publication number Priority date Publication date Assignee Title
CN106600383A (zh) * 2016-12-29 2017-04-26 江西博瑞彤芸科技有限公司 页面配置方法
CN108334387B (zh) * 2017-01-20 2021-03-16 阿里巴巴集团控股有限公司 动态界面渲染方法及装置
CN106951523B (zh) * 2017-03-20 2019-12-10 北京搜狐新媒体信息技术有限公司 一种对象处理方法及系统
CN106980508A (zh) * 2017-04-01 2017-07-25 百度在线网络技术(北京)有限公司 用于生成页面的方法和装置
CN109656645A (zh) * 2017-10-11 2019-04-19 阿里巴巴集团控股有限公司 展现时间确定方法和页面渲染完成时间的确定方法及装置
CN108549693B (zh) * 2018-04-13 2022-07-08 上海宝尊电子商务有限公司 基于爬虫技术的cms页面生成方法
CN110489116B (zh) * 2018-05-15 2024-02-06 阿里巴巴(中国)有限公司 一种页面的渲染方法、装置及计算机存储介质
CN108845800B (zh) * 2018-05-23 2022-05-31 北京五八信息技术有限公司 一种组件扩展功能的实现方法、装置、设备及存储介质
CN109101300B (zh) * 2018-06-14 2020-06-02 腾讯科技(深圳)有限公司 一种页面渲染方法、装置及终端
CN109145238B (zh) * 2018-07-06 2021-09-28 创新先进技术有限公司 一种卡片显示方法、装置及移动设备
CN110007916B (zh) * 2018-12-06 2022-07-05 创新先进技术有限公司 业务系统的界面渲染方法、装置和服务器
CN109684008B (zh) * 2018-12-19 2022-03-29 Oppo广东移动通信有限公司 卡片渲染方法、装置、终端及计算机可读存储介质
CN110297672B (zh) * 2019-05-22 2022-08-16 深圳壹账通智能科技有限公司 页面动态生成方法、装置、计算机设备及存储介质
CN110442815B (zh) * 2019-06-24 2022-04-01 北京奇艺世纪科技有限公司 页面生成方法、系统、装置及计算机可读存储介质
CN110673907B (zh) * 2019-08-30 2022-04-15 深圳壹账通智能科技有限公司 多角色页面跳转方法、装置、计算机设备及可读存储介质
CN110727435B (zh) * 2019-10-21 2023-09-05 百度在线网络技术(北京)有限公司 渲染方法、装置、电子设备及存储介质
CN110908657A (zh) * 2019-11-15 2020-03-24 中国人民财产保险股份有限公司 一种产品生成方法及装置
CN111142846B (zh) * 2019-12-27 2023-12-05 北京奇艺世纪科技有限公司 组件开发方法、装置及系统、移动终端和可读存储介质
CN111459565B (zh) * 2020-02-27 2023-08-18 上海钧正网络科技有限公司 一种客户端页面渲染的方法、装置及移动终端
CN111857803A (zh) * 2020-07-20 2020-10-30 北京达佳互联信息技术有限公司 页面更新方法、装置、服务器及存储介质
CN114217795A (zh) * 2021-12-03 2022-03-22 北京达佳互联信息技术有限公司 页面生成方法、装置、电子设备及可读存储介质
CN114817793B (zh) * 2022-06-24 2022-11-15 深圳市信润富联数字科技有限公司 页面生成方法、装置、设备及存储介质

Citations (5)

* Cited by examiner, † Cited by third party
Publication number Priority date Publication date Assignee Title
US7594166B1 (en) * 1999-05-20 2009-09-22 Microsoft Corporation Dynamic web page behaviors
CN102306163A (zh) * 2011-08-01 2012-01-04 烟台杰瑞网络商贸有限公司 一种基于b2b平台的动态集成技术
CN103577207A (zh) * 2012-08-01 2014-02-12 阿里巴巴集团控股有限公司 一种自定义界面系统中界面组件的加载方法和装置
CN103870266A (zh) * 2012-12-12 2014-06-18 杭州新世纪电子科技有限公司 一种页面生成方法和系统
CN103955364A (zh) * 2014-04-15 2014-07-30 南威软件股份有限公司 一种适用于手机的前端组件方法

Family Cites Families (4)

* Cited by examiner, † Cited by third party
Publication number Priority date Publication date Assignee Title
US10176270B2 (en) * 2009-12-24 2019-01-08 International Business Machines Corporation Performance of template based javascript widgets
CN102779164B (zh) * 2012-06-20 2015-08-05 深圳市远行科技有限公司 一种业务系统及其动态页面的渲染方法
CN104158836B (zh) * 2014-06-23 2018-05-01 浙江大学城市学院 一种通过数据渲染移动应用界面的方法
CN104142826A (zh) * 2014-07-28 2014-11-12 百度在线网络技术(北京)有限公司 页面的构建方法、装置及系统

Patent Citations (5)

* Cited by examiner, † Cited by third party
Publication number Priority date Publication date Assignee Title
US7594166B1 (en) * 1999-05-20 2009-09-22 Microsoft Corporation Dynamic web page behaviors
CN102306163A (zh) * 2011-08-01 2012-01-04 烟台杰瑞网络商贸有限公司 一种基于b2b平台的动态集成技术
CN103577207A (zh) * 2012-08-01 2014-02-12 阿里巴巴集团控股有限公司 一种自定义界面系统中界面组件的加载方法和装置
CN103870266A (zh) * 2012-12-12 2014-06-18 杭州新世纪电子科技有限公司 一种页面生成方法和系统
CN103955364A (zh) * 2014-04-15 2014-07-30 南威软件股份有限公司 一种适用于手机的前端组件方法

Cited By (37)

* Cited by examiner, † Cited by third party
Publication number Priority date Publication date Assignee Title
CN108446116A (zh) * 2018-02-26 2018-08-24 平安普惠企业管理有限公司 应用程序页面的生成方法、装置、计算机设备和存储介质
CN108874384A (zh) * 2018-05-31 2018-11-23 康键信息技术(深圳)有限公司 终端设备、服务器、网页数据处理方法和计算机存储介质
CN109271607A (zh) * 2018-08-17 2019-01-25 阿里巴巴集团控股有限公司 用户页面布局检测方法和装置、电子设备
CN110889067A (zh) * 2018-09-10 2020-03-17 广州虎牙信息科技有限公司 页面的渲染方法、装置、设备及存储介质
CN111581567A (zh) * 2019-02-18 2020-08-25 阿里巴巴集团控股有限公司 一种页面生成方法及装置
CN111581567B (zh) * 2019-02-18 2023-03-28 阿里巴巴集团控股有限公司 一种页面生成方法及装置
CN110121094A (zh) * 2019-06-20 2019-08-13 广州酷狗计算机科技有限公司 视频合拍模板的显示方法、装置、设备及存储介质
CN110287472B (zh) * 2019-06-28 2022-12-09 湖南水羊科技有限公司 一种报表配置方法、系统、设备及计算机可读存储介质
CN110287472A (zh) * 2019-06-28 2019-09-27 湖南御家科技有限公司 一种报表配置方法、系统、设备及计算机可读存储介质
CN112416334A (zh) * 2019-08-23 2021-02-26 腾讯科技(深圳)有限公司 一种页面配置方法、装置、设备及存储介质
CN112416334B (zh) * 2019-08-23 2024-06-11 腾讯科技(深圳)有限公司 一种页面配置方法、装置、设备及存储介质
CN112631580A (zh) * 2019-09-24 2021-04-09 阿里巴巴集团控股有限公司 数据处理方法、装置及计算设备
CN110727434A (zh) * 2019-10-21 2020-01-24 百度在线网络技术(北京)有限公司 渲染方法、装置、电子设备及存储介质
CN110727434B (zh) * 2019-10-21 2023-07-04 百度在线网络技术(北京)有限公司 渲染方法、装置、电子设备及存储介质
CN112862558B (zh) * 2019-11-28 2024-03-01 阿里巴巴集团控股有限公司 产品详情页面的生成方法和系统、数据处理方法
CN112862558A (zh) * 2019-11-28 2021-05-28 阿里巴巴集团控股有限公司 产品详情页面的生成方法和系统、数据处理方法
CN111061478A (zh) * 2019-12-11 2020-04-24 政采云有限公司 一种页面表单修改方法、装置、设备及可读存储介质
CN111061478B (zh) * 2019-12-11 2023-08-22 政采云有限公司 一种页面表单修改方法、装置、设备及可读存储介质
CN111324390A (zh) * 2020-02-20 2020-06-23 苏宁云计算有限公司 实现app内容可配置和实时更新的装置及方法
CN111611514B (zh) * 2020-04-11 2024-04-23 上海淇玥信息技术有限公司 一种基于用户登录信息的页面展示方法、装置和电子设备
CN111611514A (zh) * 2020-04-11 2020-09-01 上海淇玥信息技术有限公司 一种基于用户登录信息的页面展示方法、装置和电子设备
CN113703860A (zh) * 2020-05-09 2021-11-26 中国人寿财产保险股份有限公司 一种动态配置app的系统和方法
CN112256445A (zh) * 2020-07-24 2021-01-22 北京沃东天骏信息技术有限公司 基于应用程序的数据处理方法、装置、设备及存储介质
CN112083990A (zh) * 2020-08-28 2020-12-15 山东英信计算机技术有限公司 一种智能配置监控首页的方法、装置、设备及存储介质
CN112433728A (zh) * 2020-12-09 2021-03-02 中国建设银行股份有限公司 网站构建的方法、装置、电子设备以及存储介质
CN112631588A (zh) * 2020-12-28 2021-04-09 北京五八信息技术有限公司 文件生成方法、装置、电子设备和计算机可读介质
CN112800724A (zh) * 2020-12-29 2021-05-14 杭州涂鸦信息技术有限公司 可视化配置模板的可读文件导出方法及相关装置
CN113760253A (zh) * 2021-01-08 2021-12-07 北京沃东天骏信息技术有限公司 前端渲染方法、装置、设备、介质及程序产品
CN112800370A (zh) * 2021-01-28 2021-05-14 金蝶蝶金云计算有限公司 业务单据的处理方法、装置、计算机设备和存储介质
CN112800370B (zh) * 2021-01-28 2024-04-30 金蝶蝶金云计算有限公司 业务单据的处理方法、装置、计算机设备和存储介质
CN113190759A (zh) * 2021-05-21 2021-07-30 上海微盟企业发展有限公司 一种网页生成方法、装置、设备及计算机可读存储介质
CN113419726B (zh) * 2021-06-22 2023-10-24 康键信息技术(深圳)有限公司 商品详情页面生成方法、装置、设备及存储介质
CN113419726A (zh) * 2021-06-22 2021-09-21 康键信息技术(深圳)有限公司 商品详情页面生成方法、装置、设备及存储介质
CN113268261A (zh) * 2021-07-16 2021-08-17 北京乐学帮网络技术有限公司 一种页面内容展示方法、装置以及电子设备
CN113590119A (zh) * 2021-07-29 2021-11-02 远光软件股份有限公司 页面创建方法、电子设备及存储介质
CN114756552A (zh) * 2022-04-21 2022-07-15 湖南快乐阳光互动娱乐传媒有限公司 数据聚合方法及装置
CN115543323A (zh) * 2022-11-29 2022-12-30 共道网络科技有限公司 一种页面开发方法及装置

Also Published As

Publication number Publication date
HK1231588A1 (zh) 2017-12-22
CN106202096A (zh) 2016-12-07

Similar Documents

Publication Publication Date Title
WO2016177250A1 (fr) Procédé et appareil de rendu de page de client
KR102185864B1 (ko) 프레젠테이션을 위한 네이티브 콘텐츠의 서버측 렌더링 방법 및 시스템
US9311281B2 (en) Methods for facilitating web page image hotspots and devices thereof
US8549471B2 (en) Method and apparatus for providing API service and making API mash-up, and computer readable recording medium thereof
US8543973B2 (en) Method and system for providing authentication schemes for web services
US20110119298A1 (en) Method and apparatus for searching information
US10372769B2 (en) Displaying results, in an analytics visualization dashboard, of federated searches across repositories using as inputs attributes of the analytics visualization dashboard
US10262066B2 (en) Crowd-sourced native application crawling
US10191971B2 (en) Computer-automated display adaptation of search results according to layout file
US8959111B2 (en) Providing answer box functionality to third party search engines
JPWO2019163117A1 (ja) ウェブページ翻訳システム、ウェブページ翻訳装置、ウェブページ提供装置およびウェブページ翻訳方法
US10878055B2 (en) Web server
CN107430609B (zh) 针对企业环境的浏览器新标签页的生成
CN113254819B (zh) 一种页面渲染方法、系统、设备和存储介质
CN107248947B (zh) 表情处理方法及装置、计算机设备及存储介质
KR102372060B1 (ko) 전자 기기, 표시 방법, 및 기록 매체에 기록된 프로그램
CN105589870B (zh) 网页广告的过滤方法和系统
JP6219425B2 (ja) 属性情報生成装置、連携システムおよび属性情報生成プログラム
US20170075880A1 (en) Translation for web services
CN107844537A (zh) 一种标记网页的方法及系统
JP2011048730A (ja) ウェブページ閲覧アシスト方法
JP5020355B2 (ja) プロフィール表示装置、方法、プログラム及びシステム
CN112925998B (zh) 界面数据处理方法、装置、系统、电子设备及存储介质
CN115202715A (zh) 一种网络页面的处理方法、装置及存储介质
JP2013257707A (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: 16789244

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

Country of ref document: EP

Kind code of ref document: A1