CN112230965A - System and method for hot updating of small programs in application program - Google Patents

System and method for hot updating of small programs in application program Download PDF

Info

Publication number
CN112230965A
CN112230965A CN202011194500.5A CN202011194500A CN112230965A CN 112230965 A CN112230965 A CN 112230965A CN 202011194500 A CN202011194500 A CN 202011194500A CN 112230965 A CN112230965 A CN 112230965A
Authority
CN
China
Prior art keywords
data
module
submodule
applet
character
Prior art date
Legal status (The legal status is an assumption and is not a legal conclusion. Google has not performed a legal analysis and makes no representation as to the accuracy of the status listed.)
Pending
Application number
CN202011194500.5A
Other languages
Chinese (zh)
Inventor
陈锐
Current Assignee (The listed assignees may be inaccurate. Google has not performed a legal analysis and makes no representation or warranty as to the accuracy of the list.)
Guangdong Nice Smart Technology Co ltd
Original Assignee
Guangdong Nice Smart Technology 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 Guangdong Nice Smart Technology Co ltd filed Critical Guangdong Nice Smart Technology Co ltd
Priority to CN202011194500.5A priority Critical patent/CN112230965A/en
Publication of CN112230965A publication Critical patent/CN112230965A/en
Pending legal-status Critical Current

Links

Images

Classifications

    • GPHYSICS
    • G06COMPUTING; CALCULATING OR COUNTING
    • G06FELECTRIC DIGITAL DATA PROCESSING
    • G06F8/00Arrangements for software engineering
    • G06F8/60Software deployment
    • G06F8/65Updates
    • 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/46Multiprogramming arrangements
    • G06F9/54Interprogram communication
    • G06F9/544Buffers; Shared memory; Pipes

Landscapes

  • Engineering & Computer Science (AREA)
  • Software Systems (AREA)
  • Theoretical Computer Science (AREA)
  • General Engineering & Computer Science (AREA)
  • Physics & Mathematics (AREA)
  • General Physics & Mathematics (AREA)
  • Computer Security & Cryptography (AREA)
  • Information Retrieval, Db Structures And Fs Structures Therefor (AREA)
  • Information Transfer Between Computers (AREA)
  • Document Processing Apparatus (AREA)

Abstract

A system for intra-application applet hot update, comprising: the local cache judging module is used for judging whether cache data exist locally or not; the module data acquisition module is used for acquiring module data from the server; the module data processing module is used for processing the module data acquired by the module data acquisition module to generate data capable of transmitting character formats; the data returning module is used for returning the data which is generated by the module data processing module and can transmit the character format to the applet terminal; the data storage module is used for storing the data returned by the data returning module at an applet terminal; the invention modularizes the content of the small program, automatically renders and forms the small program end through the algorithm script, can update the content thermally, does not need to submit the small program package to the official for examination again, and can realize the purpose of updating the content quickly.

Description

System and method for hot updating of small programs in application program
Technical Field
The invention relates to the technical field of internet, in particular to a method and a system for hot updating of an applet in an application program.
Background
With the development of mobile internet technology at any time, social applications have become important communication tools in daily life, work and other aspects of people, and as an example, a micro-x social application generally supports the use of service plug-ins such as "shake-and-shake", "circle of friends", "public platform" and the like by sharing data of streaming media content and location-based social plug-ins, and various different applets can be run in the social application to provide differentiated services for users.
The applet is an application which can be used without downloading and installing, and enterprises, governments, media, other organizations or individuals can apply for registering the applet on an application platform to which the social application program belongs so as to promote the information issued by the applet by means of users of the social application program.
As the crowd using the WeChat small program is more and more extensive, more and more enterprises need to make the small program, but as the updating of the small program needs to submit the small program package to the WeChat official for auditing, the small program package can be approved by one day at a fast speed and several days at a slow speed, and the small program package can not be approved for some reasons, the invention aims to quickly update the content of the small program.
It can be seen that there are a number of problems with the prior art.
Disclosure of Invention
To solve the above problems in the prior art, the present invention provides a system and method for hot update of an applet in an application.
The invention solves the problems through the following technical means:
a system for intra-application applet hot update, comprising:
the local cache judging module is used for judging whether cache data exist locally or not;
the module data acquisition module is used for acquiring module data from the server;
the module data processing module is used for processing the module data acquired by the module data acquisition module to generate data capable of transmitting character formats;
the data returning module is used for returning the data which is generated by the module data processing module and can transmit the character format to the applet terminal;
the data storage module is used for storing the data returned by the data returning module at an applet terminal;
and the data rendering module is used for rendering the data stored in the data storage module to form a final interface.
Further, when the local cache judging module judges that no cache data exists locally, the module data acquiring module acquires the module data from the server side in a SOCKET connection mode.
Further, when the local cache judging module judges that cache data exists locally, the module data acquiring module further includes:
the cache data structuring sub-module is used for carrying out data structuring on local cache data and updating time through a heartbeat detection mechanism;
the structured data processing submodule is used for processing the data structured by the cache data structured submodule to generate transmittable character content and transmitting the transmittable character content to the server, and the character content is decoded at the server;
and the difference data generation sub-module is used for comparing the character content decoded by the structured data processing sub-module with the server side, and when data difference occurs, the data to be updated is difference data which is module data.
Further, the module data processing module comprises:
the structuring sub-module is used for carrying out data structuring on the module data, converting the module data into an array of a module name, a parameter and a timestamp, and converting the module data into a JSON format;
the encryption submodule is used for converting the structured submodule into JSON format data to be encrypted;
the compression submodule is used for compressing the data encrypted by the encryption submodule;
and the conversion sub-module is used for converting the data compressed by the compression sub-module into a transmittable character format.
Further, the module data storage module includes:
the decoding submodule is used for decoding the data returned to the small program end by the data returning module;
the decompression submodule is used for decompressing the data decoded by the decoding submodule;
the decryption submodule is used for decrypting the data decompressed by the decompression submodule;
and the storage submodule is used for storing the data decrypted by the decryption submodule.
Further, the structured data processing sub-module comprises:
the format conversion unit is used for converting the data after the cache data structuring submodule is structured into a JSON format, wherein the data format is a module parameter and an updating timestamp;
the encryption unit is used for encrypting the data converted into the JSON format by the format conversion unit;
a compression unit configured to compress the data encrypted by the encryption unit;
and the conversion decoding unit is used for converting the data compressed by the compression unit into a transmittable character format and transmitting the transmittable character format to the server, and the server decodes the character content.
The invention also provides a method for hot updating of the small program in the application program, which comprises the following steps:
s1, judging whether cache data exist locally;
s2, acquiring module data from the server;
s3, processing the block data acquired in S2 to generate data in a transmittable character format;
s4, transmitting the data in the character format which can be transmitted and generated in the S3 back to an applet terminal;
s5, storing the data returned in S4 at the applet terminal;
and S6, rendering the data stored in the S5 to form a final interface.
Further, the S1 further includes:
s11, when the data is not cached locally, module data is obtained from the server side in a SOCKET connection mode;
s12, when the local cache data exists, further comprising:
s121, carrying out data structuring on local cache data and updating time through a heartbeat detection mechanism;
s122, processing the data structured in the S121 to generate transmittable character contents, transmitting the character contents to a server, and decoding the character contents at the server;
and S123, comparing the character content decoded in the S122 with the server, wherein when data difference occurs, the data to be updated is difference data, and the difference data is module data.
Further, the S3 further includes:
s31, carrying out data structuring on the module data, converting the module data into an array of module names, parameters and timestamps, and converting the module data into a JSON format;
s32, encrypting the data converted into the JSON format by the S31;
s33, compressing the encrypted data of S32;
and S34, converting the data compressed in the S33 into a transmittable character format.
Further, the S5 further includes:
s51, decoding the data returned to the applet terminal by the S4;
s52, decompressing the decoded data of S51;
s53, decrypting the decompressed data of S52;
s54, storing the decrypted data of S53.
According to the invention, the content of the small program is modularized, the content data of the small program is asynchronously downloaded, and the small program is automatically rendered and formed through the algorithm script at the small program end, so that the content can be thermally updated without submitting the small program package to the official for examination again, and the purpose of quickly updating the content can be realized.
Drawings
In order to more clearly illustrate the technical solutions in the embodiments of the present invention, the drawings needed to be used in the description of the embodiments will be briefly introduced below, and it is obvious that the drawings in the following description are only some embodiments of the present invention, and it is obvious for those skilled in the art to obtain other drawings based on these drawings without creative efforts.
FIG. 1 is a block diagram of a system architecture for hot update of an applet within an application provided by the present invention;
FIG. 2 is a flowchart of a method for hot update of an applet in an application according to the present invention.
Detailed Description
In order to make the aforementioned objects, features and advantages of the present invention comprehensible, embodiments accompanied with figures are described in detail below. It should be noted that the described embodiments are only a part of the embodiments of the present invention, and not all embodiments, and all other embodiments obtained by those skilled in the art without any inventive work are within the scope of the present invention.
Examples
A system for intra-application applet hot update as shown in fig. 1, comprising:
the local cache judging module is used for judging whether cache data exist locally or not; the module data acquisition module is used for acquiring module data from the server;
preferably, when the local cache judging module judges that no cache data exists locally, the module data acquiring module acquires the module data from the server side in a SOCKET connection mode. Namely, if the WeChat applet is opened for the first time and the local cache data is empty, module data is requested from the server side directly in a SOCKET connection mode.
Preferably, when the local cache determining module determines that cache data exists locally, the module data acquiring module further includes:
the cache data structuring sub-module is used for carrying out data structuring on local cache data and updating time through a heartbeat detection mechanism; namely, the WeChat applet is opened for the second time or the Nth time (an integer with N bits > 1), and local cache data and updating time are subjected to data structuring at the WeChat applet end through a heartbeat detection mechanism.
The structured data processing submodule is used for processing the data structured by the cache data structured submodule to generate transmittable character content and transmitting the transmittable character content to the server, and the character content is decoded at the server; preferably, the structured data processing sub-module includes:
and the format conversion unit is used for converting the data after the cache data structuring submodule is structured into the JSON format, wherein the data format is the module parameter and the updating timestamp.
The encryption unit is used for encrypting the data converted into the JSON format by the format conversion unit; preferably, it is used. The present invention preferably employs AES encryption.
A compression unit configured to compress the data encrypted by the encryption unit; preferably, the ZIP compression method is preferably employed in the present invention.
And the conversion decoding unit is used for converting the data compressed by the compression unit into a transmittable character format (preferably, BASE64 encoding conversion is preferred in the invention) and transmitting the transmittable character format to the service end, the character content is decoded at the service end, and the character content is decoded at the service end through BASE64 correspondingly.
And the difference data generation sub-module is used for comparing the character content decoded by the structured data processing sub-module with the server side, and when data difference occurs, the data to be updated is difference data which is module data.
And the module data processing module is used for processing the module data acquired by the module data acquisition module to generate data capable of transmitting the character format. Preferably, the module data processing module includes:
the structuring sub-module is used for carrying out data structuring on the module data, converting the module data into an array of a module name, a parameter and a timestamp, and converting the module data into a JSON format;
the encryption submodule is used for converting the structured submodule into JSON format data to be encrypted; preferably, it is used. The present invention preferably employs AES encryption.
The compression submodule is used for compressing the data encrypted by the encryption submodule; preferably, the ZIP compression method is preferably employed in the present invention.
And the conversion sub-module is used for converting the data compressed by the compression sub-module into a transmittable character format. Preferably, the present invention preferably encodes using BASE 64.
And the data returning module is used for returning the data which is generated by the module data processing module and can transmit the character format to the applet terminal.
The data storage module is used for storing the data returned by the data returning module at an applet terminal; and the data transmitted back to the applet terminal is subjected to base64 decoding by the applet terminal script, the data is decompressed by a zip algorithm, finally, the file is decrypted by AES, and the data is stored by the storage of the applet. Preferably, the module data storage module includes:
the decoding submodule is used for decoding the data returned to the small program end by the data returning module; preferably, the present invention preferably employs BASE64 for decoding.
The decompression submodule is used for decompressing the data decoded by the decoding submodule; preferably, ZIP decompression is preferably employed in the present invention.
The decryption submodule is used for decrypting the data decompressed by the decompression submodule; preferably, the present invention preferably employs AES decryption.
And the storage submodule is used for storing the data decrypted by the decryption submodule. I.e. the data is saved by the storage of the applet.
And the data rendering module is used for rendering the data stored in the data storage module to form a final interface. It should be noted that, first, the basic structure of the module and the settable options are already included in the applet package. The structure of a single module comprises four files of js, json, wxml and wxss. There are various modules, including basic modules, such as text modules, picture modules, text modules, etc., and advanced modules, such as article list modules, article content modules, product list modules, product information modules, etc. The data are loaded from a server side, a data structure comprises information formed by modules, such as the positions TOP and LEFT of the modules, the height and width of the modules, the CSS style of the modules and action events needing to be triggered, the modules are stacked and positioned relatively, data information is given through circulating module data, and the purpose that the small programs are rendered and typeset to finally form an interface is achieved.
Preferably, the invention also provides an automatic typesetting mechanism of the dynamic content module: for example, the height of some modules is not fixed, for example, the article content modules may have different heights according to the length of the content of the article, and here, the height value of the module needs to be calculated, and all modules are located below the module through an algorithm to perform positioning top + height downward shifting, so as to ensure that there is no shielded module. The method by which the module automatically calculates the height is briefly described below:
and calculating the position of each module including top, left, width, height and index at the editor at the PC end, and storing the positioning information. And meanwhile, storing the corresponding CSS custom style of the module. At the applet end, all module components have been built in advance. When the module information is loaded at the applet terminal, the module list is circulated and the module component is given the specified positioning and CSS custom style. Aiming at the condition that the height of module contents such as articles, product details, picture lists and the like is not fixed, the positioning of the current dynamic height module is calculated through an algorithm, all the positioning is calculated to be higher than the bottommost part of the current module, and the module moves downwards automatically, namely the top is increased by a numerical value, so that the positioning of the modules with the layout is calculated automatically.
According to the invention, the content of the small program is modularized, the content data of the small program is asynchronously downloaded, and the small program is automatically rendered and formed through the algorithm script at the small program end, so that the content can be thermally updated without submitting the small program package to the official for examination again, and the purpose of quickly updating the content can be realized.
As shown in fig. 2, the present invention further provides a method for hot update of an applet in an application, including:
and S1, judging whether the local cache data exists. And S2, acquiring module data from the server.
Preferably, the S1 further includes:
s11, when the data is not cached locally, module data is obtained from the server side in a SOCKET connection mode;
s12, when the local cache data exists, further comprising: s121, carrying out data structuring on local cache data and updating time through a heartbeat detection mechanism; s122, processing the data structured in the S121 to generate transmittable character contents, transmitting the character contents to a server, and decoding the character contents at the server; and S123, comparing the character content decoded in the S122 with the server, wherein when data difference occurs, the data to be updated is difference data, and the difference data is module data.
Preferably, the S122 further includes:
and S1221, converting the data structured in S121 into a JSON format, wherein the data format is a module parameter and an update timestamp.
S1222, encrypting the data converted from S1221 into JSON format; preferably, it is used. The present invention preferably employs AES encryption.
S1223, configured to compress the data encrypted in S1222; preferably, the ZIP compression method is preferably employed in the present invention.
S1224, configured to convert the data compressed in S1223 into a transmittable character format (preferably, BASE64 encoding conversion is preferred in the present invention), and transmit the converted data to the service end, decode the character content at the service end, and correspondingly decode the character content at the service end through BASE 64.
S3, processing the block data acquired in S2 to generate data in a transmittable character format; preferably, the S3 further includes:
s31, carrying out data structuring on the module data, converting the module data into an array of module names, parameters and timestamps, and converting the module data into a JSON format;
s32, encrypting the data converted into the JSON format by the S31; preferably, it is used. The present invention preferably employs AES encryption.
S33, compressing the encrypted data of S32; preferably, the ZIP compression method is preferably employed in the present invention.
And S34, converting the data compressed in the S33 into a transmittable character format. Preferably, the present invention preferably encodes using BASE 64.
S4, transmitting the data in the character format which can be transmitted and generated in the S3 back to an applet terminal;
s5, storing the data returned in S4 at the applet terminal; preferably, the S5 further includes:
s51, decoding the data returned to the applet terminal by the S4; preferably, the present invention preferably employs BASE64 for decoding.
S52, decompressing the decoded data of S51; preferably, ZIP decompression is preferably employed in the present invention.
S53, decrypting the decompressed data of S52; preferably, the present invention preferably employs AES decryption.
S54, storing the decrypted data of S53. I.e. the data is saved by the storage of the applet.
And S6, rendering the data stored in the S5 to form a final interface. It should be noted that, first, the basic structure of the module and the settable options are already included in the applet package. The structure of a single module comprises four files of js, json, wxml and wxss. There are various modules, including basic modules, such as text modules, picture modules, text modules, etc., and advanced modules, such as article list modules, article content modules, product list modules, product information modules, etc. The data are loaded from a server side, a data structure comprises information formed by modules, such as the positions TOP and LEFT of the modules, the height and width of the modules, the CSS style of the modules and action events needing to be triggered, the modules are stacked and positioned relatively, data information is given through circulating module data, and the purpose that the small programs are rendered and typeset to finally form an interface is achieved.
Preferably, the invention also provides an automatic typesetting mechanism of the dynamic content module: for example, the height of some modules is not fixed, for example, the article content modules may have different heights according to the length of the content of the article, and here, the height value of the module needs to be calculated, and all modules are located below the module through an algorithm to perform positioning top + height downward shifting, so as to ensure that there is no shielded module. The method by which the module automatically calculates the height is briefly described below:
and calculating the position of each module including top, left, width, height and index at the editor at the PC end, and storing the positioning information. And meanwhile, storing the corresponding CSS custom style of the module. At the applet end, all module components have been built in advance. When the module information is loaded at the applet terminal, the module list is circulated and the module component is given the specified positioning and CSS custom style. Aiming at the condition that the height of module contents such as articles, product details, picture lists and the like is not fixed, the positioning of the current dynamic height module is calculated through an algorithm, all the positioning is calculated to be higher than the bottommost part of the current module, and the module moves downwards automatically, namely the top is increased by a numerical value, so that the positioning of the modules with the layout is calculated automatically.
According to the invention, the content of the small program is modularized, the content data of the small program is asynchronously downloaded, and the small program is automatically rendered and formed through the algorithm script at the small program end, so that the content can be thermally updated without submitting the small program package to the official for examination again, and the purpose of quickly updating the content can be realized.
Reference throughout this specification to "one embodiment," "another embodiment," "an embodiment," "a preferred embodiment," or the like, means that a particular feature, structure, or characteristic described in connection with the embodiment is included in at least one embodiment described generally in this application. The appearances of the same phrase in various places in the specification are not necessarily all referring to the same embodiment. Further, when a particular feature, structure, or characteristic is described in connection with any embodiment, it is submitted that it is within the purview of one skilled in the art to effect such feature, structure, or characteristic in connection with other ones of the embodiments. Although the invention has been described herein with reference to a number of illustrative examples thereof, it should be understood that numerous other modifications and embodiments can be devised by those skilled in the art that will fall within the scope and spirit of the principles of this disclosure. More specifically, other uses will be apparent to those skilled in the art in view of variations and modifications in the subject matter incorporating the components and/or arrangement of the arrangement within the scope of the disclosure, drawings and claims hereof.

Claims (10)

1. A system for hot update of an applet within an application, comprising:
the local cache judging module is used for judging whether cache data exist locally or not;
the module data acquisition module is used for acquiring module data from the server;
the module data processing module is used for processing the module data acquired by the module data acquisition module to generate data capable of transmitting character formats;
the data returning module is used for returning the data which is generated by the module data processing module and can transmit the character format to the applet terminal;
the data storage module is used for storing the data returned by the data returning module at an applet terminal;
and the data rendering module is used for rendering the data stored in the data storage module to form a final interface.
2. The system for hot update of applets in an application according to claim 1, wherein when the local cache determination module determines that there is no local cache data, the module data acquisition module acquires module data from the server in a SOCKET connection manner.
3. The system for hot update of an applet in a software application according to claim 1, wherein when the local cache determining module determines that the cache data exists locally, the module data obtaining module further comprises:
the cache data structuring sub-module is used for carrying out data structuring on local cache data and updating time through a heartbeat detection mechanism;
the structured data processing submodule is used for processing the data structured by the cache data structured submodule to generate transmittable character content and transmitting the transmittable character content to the server, and the character content is decoded at the server;
and the difference data generation sub-module is used for comparing the character content decoded by the structured data processing sub-module with the server side, and when data difference occurs, the data to be updated is difference data which is module data.
4. The system of in-application applet thermal update according to claim 1, characterized in that the module data processing module comprises:
the structuring sub-module is used for carrying out data structuring on the module data, converting the module data into an array of a module name, a parameter and a timestamp, and converting the module data into a JSON format;
the encryption submodule is used for converting the structured submodule into JSON format data to be encrypted;
the compression submodule is used for compressing the data encrypted by the encryption submodule;
and the conversion sub-module is used for converting the data compressed by the compression sub-module into a transmittable character format.
5. The system of in-application applet thermal update according to claim 1, characterized in that the module data storage module comprises:
the decoding submodule is used for decoding the data returned to the small program end by the data returning module;
the decompression submodule is used for decompressing the data decoded by the decoding submodule;
the decryption submodule is used for decrypting the data decompressed by the decompression submodule;
and the storage submodule is used for storing the data decrypted by the decryption submodule.
6. The system of in-application applet thermal update according to claim 3, characterized in that the structured data processing submodule comprises:
the format conversion unit is used for converting the data after the cache data structuring submodule is structured into a JSON format, wherein the data format is a module parameter and an updating timestamp;
the encryption unit is used for encrypting the data converted into the JSON format by the format conversion unit;
a compression unit configured to compress the data encrypted by the encryption unit;
and the conversion decoding unit is used for converting the data compressed by the compression unit into a transmittable character format and transmitting the transmittable character format to the server, and the server decodes the character content.
7. A method for hot update of an applet within an application, comprising:
s1, judging whether cache data exist locally;
s2, acquiring module data from the server;
s3, processing the block data acquired in S2 to generate data in a transmittable character format;
s4, transmitting the data in the character format which can be transmitted and generated in the S3 back to an applet terminal;
s5, storing the data returned in S4 at the applet terminal;
and S6, rendering the data stored in the S5 to form a final interface.
8. The method for in-application applet hot update according to claim 7, wherein the S1 further comprises:
s11, when the data is not cached locally, module data is obtained from the server side in a SOCKET connection mode;
s12, when the local cache data exists, further comprising:
s121, carrying out data structuring on local cache data and updating time through a heartbeat detection mechanism;
s122, processing the data structured in the S121 to generate transmittable character contents, transmitting the character contents to a server, and decoding the character contents at the server;
and S123, comparing the character content decoded in the S122 with the server, wherein when data difference occurs, the data to be updated is difference data, and the difference data is module data.
9. The method for in-application applet hot update according to claim 7, wherein the S3 further comprises:
s31, carrying out data structuring on the module data, converting the module data into an array of module names, parameters and timestamps, and converting the module data into a JSON format;
s32, encrypting the data converted into the JSON format by the S31;
s33, compressing the encrypted data of S32;
and S34, converting the data compressed in the S33 into a transmittable character format.
10. The method for in-application applet hot update according to claim 7, wherein the S5 further comprises:
s51, decoding the data returned to the applet terminal by the S4;
s52, decompressing the decoded data of S51;
s53, decrypting the decompressed data of S52;
s54, storing the decrypted data of S53.
CN202011194500.5A 2020-10-30 2020-10-30 System and method for hot updating of small programs in application program Pending CN112230965A (en)

Priority Applications (1)

Application Number Priority Date Filing Date Title
CN202011194500.5A CN112230965A (en) 2020-10-30 2020-10-30 System and method for hot updating of small programs in application program

Applications Claiming Priority (1)

Application Number Priority Date Filing Date Title
CN202011194500.5A CN112230965A (en) 2020-10-30 2020-10-30 System and method for hot updating of small programs in application program

Publications (1)

Publication Number Publication Date
CN112230965A true CN112230965A (en) 2021-01-15

Family

ID=74122639

Family Applications (1)

Application Number Title Priority Date Filing Date
CN202011194500.5A Pending CN112230965A (en) 2020-10-30 2020-10-30 System and method for hot updating of small programs in application program

Country Status (1)

Country Link
CN (1) CN112230965A (en)

Cited By (1)

* Cited by examiner, † Cited by third party
Publication number Priority date Publication date Assignee Title
CN114785687A (en) * 2022-06-15 2022-07-22 成都卓杭网络科技股份有限公司 Server hot updating method based on golang language, server and readable medium

Citations (4)

* Cited by examiner, † Cited by third party
Publication number Priority date Publication date Assignee Title
CN108536486A (en) * 2018-04-08 2018-09-14 苏州犀牛网络科技有限公司 The loading method and device of RN small routines
CN109726345A (en) * 2018-11-27 2019-05-07 广东耐思智慧科技有限公司 A kind of quick transmission saves the method and device of content of edit
CN110659057A (en) * 2019-09-24 2020-01-07 腾讯科技(深圳)有限公司 Application program hot updating method and device, storage medium and computer equipment
CN111142913A (en) * 2019-12-30 2020-05-12 北京讯鸟软件有限公司 Hot updating method and equipment for iOS system application program

Patent Citations (4)

* Cited by examiner, † Cited by third party
Publication number Priority date Publication date Assignee Title
CN108536486A (en) * 2018-04-08 2018-09-14 苏州犀牛网络科技有限公司 The loading method and device of RN small routines
CN109726345A (en) * 2018-11-27 2019-05-07 广东耐思智慧科技有限公司 A kind of quick transmission saves the method and device of content of edit
CN110659057A (en) * 2019-09-24 2020-01-07 腾讯科技(深圳)有限公司 Application program hot updating method and device, storage medium and computer equipment
CN111142913A (en) * 2019-12-30 2020-05-12 北京讯鸟软件有限公司 Hot updating method and equipment for iOS system application program

Cited By (2)

* Cited by examiner, † Cited by third party
Publication number Priority date Publication date Assignee Title
CN114785687A (en) * 2022-06-15 2022-07-22 成都卓杭网络科技股份有限公司 Server hot updating method based on golang language, server and readable medium
CN114785687B (en) * 2022-06-15 2022-10-21 成都卓杭网络科技股份有限公司 Server hot updating method based on golang language, server and readable medium

Similar Documents

Publication Publication Date Title
US9240966B2 (en) System and method for transmitting and receiving media messages
CN105721462B (en) Information pushing method and device
US7640184B1 (en) Method and system for processing published content on the internet
CN105718540B (en) Data loading method and device
US20080195698A1 (en) Method and System for Transforming and Delivering Video File Content for Mobile Devices
CN104820668B (en) Compressed sequence is carried out to transmit from client application to data
CN107346320B (en) Data calling method and device
US8510397B2 (en) Method and apparatus for message notification via RSS feed
CN104333531A (en) Network resource sharing and obtaining method, device, terminal
CN109257451B (en) Corresponding relation analysis method and equipment
CN109039876B (en) Mail processing method and device
CN111756847B (en) Method and device for supporting https protocol by website
US9906626B2 (en) Resource demand-based network page generation
CN112230965A (en) System and method for hot updating of small programs in application program
CN114282233A (en) WEB performance optimization method and device, computer equipment and storage medium
US20220246179A1 (en) Timecode generation and assignment
CN113076294A (en) Information sharing method and device
KR101685932B1 (en) high performance image file and apparatus for generating the same
CN102110144B (en) Document access method and terminal equipment
CN110069728B (en) Method and device for displaying pictures
US20090024664A1 (en) Method and system for generating a content-based file, and content-based data structure
Joveski et al. Semantic multimedia remote display for mobile thin clients
Lee et al. Adapting Content for Mobile Devices in Heterogeneous Collaboration Environments.
CN110636374A (en) Method and device for searching information
CN113962675B (en) Receipt processing method and device, computer equipment and storage medium

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