Data processing method, device and readable storage medium

By creating auxiliary objects in the page controller to handle network requests and data model interactions, the problem of high complexity in the page controller is solved, and the program is made easier to maintain and more reliable.

CN113176952BActive Publication Date: 2026-04-10HAINAN SHILIANDA HEALTH SMART MEDICAL TECH CO LTD
View PDF 2 Cites 0 Cited by

Patent Information

Authority / Receiving Office
CN · China
Patent Type
Patents(China)
Current Assignee / Owner
Filing Date
2021-04-20
Publication Date
2026-04-10

AI Technical Summary

Technical Problem

In mobile application development, as business logic becomes more complex, page controllers become more complex, making the program harder to maintain and unit test, and reducing program reliability.

Method used

By creating a helper object in the page controller, which is responsible for initiating network requests and interacting with the data model, the helper object sends request data to the server and updates the target data model, reducing the burden on the page controller.

Benefits of technology

It reduces the complexity of the page controller, simplifies program maintenance and testing, and improves program reliability.

✦ Generated by Eureka AI based on patent content.

Smart Images

  • Figure CN113176952B_ABST
    Figure CN113176952B_ABST
Patent Text Reader

Abstract

Embodiments of the present application provide a data processing method, device and readable storage medium, wherein the method comprises: sending a network request to a server through an auxiliary object, so that the server sends request data corresponding to the network request to the auxiliary object, wherein the auxiliary object is created in a page controller, the auxiliary object receives the request data sent by the server, and updates the request data into a target data model, wherein the target data model is created in the auxiliary object. Thus, the network request can be initiated by the auxiliary object, the request data can be obtained, and the request data can be updated into the target data model, that is, the network request, the request data and the interaction with the target data model are completed by the auxiliary object, thereby reducing the complexity of the page controller, facilitating the maintenance and testing of the program, and thus the reliability of the program can be improved.
Need to check novelty before this filing date? Find Prior Art

Description

TECHNICAL FIELD

[0001] The present application relates to the technical field of program development, and in particular to a data processing method, device and readable storage medium. BACKGROUND

[0002] Currently, in the development of mobile terminal application programs, in order to handle complex business logic, a page and data separation method is adopted, which not only makes the program clear and orderly, but also improves the code reuse rate. However, this brings a problem, that is, as the complexity of the business logic increases, the glue code (page controller, that is, controller) for processing the interaction between the page and the data becomes more and more complex. The page controller needs to be responsible for the page data update of the list view, network request, data acquisition, interaction with the data model (model), and interaction with the cell view.

[0003] As the project develops, the business logic of the project becomes more and more complex, and the complexity of the business logic increases the complexity of the page controller, making the program more and more difficult to maintain, the unit test more and more difficult, and the reliability of the program reduced. SUMMARY

[0004] In view of the above problems, the present application is proposed to provide a data processing method, device and readable storage medium which can overcome the above problems or at least partially solve the above problems.

[0005] In order to solve the above problems, the present application discloses a data processing method, which comprises:

[0006] sending a network request to a server through an auxiliary object, so that the server sends request data corresponding to the network request to the auxiliary object, wherein the auxiliary object is created in a page controller;

[0007] receiving the request data sent by the server through the auxiliary object, and updating the request data into a target data model, wherein the target data model is created in the auxiliary object.

[0008] The present application also discloses a data processing device, which comprises:

[0009] a sending module configured to send a network request to a server through an auxiliary object, so that the server sends request data corresponding to the network request to the auxiliary object, wherein the auxiliary object is created in a page controller;

[0010] The receiving module is configured to receive the request data sent by the server through the auxiliary object, and update the request data into a target data model, wherein the target data model is created in the auxiliary object.

[0011] The embodiment of the present application further discloses a data processing device, comprising:

[0012] one or more processors; and

[0013] one or more machine-readable media having instructions stored thereon that, when executed by the one or more processors, cause the device to perform the data processing method described above.

[0014] The embodiment of the present application further discloses a computer readable storage medium, which stores a computer program, and the computer program causes a processor to execute the data processing method described above.

[0015] The embodiment of the present application has the following advantages:

[0016] The embodiment of the present application sends a network request to a server through an auxiliary object, so that the server sends request data corresponding to the network request to the auxiliary object, wherein the auxiliary object is created in a page controller, the auxiliary object receives the request data sent by the server, and updates the request data into a target data model, wherein the target data model is created in the auxiliary object. Thus, the network request can be initiated by the auxiliary object, the request data can be acquired, and the request data can be updated into the target data model, that is, the network request, the acquisition of the request data, and the interaction with the target data model are completed by the auxiliary object, without the need for the page controller to initiate the network request and acquire the request data, and without the need for the page controller to load the interaction between the data model, thereby reducing the complexity of the page controller, facilitating the maintenance and testing of the program, and further improving the reliability of the program. BRIEF DESCRIPTION OF DRAWINGS

[0017] Figure 1 is a step flow chart of a data processing method embodiment of the present application;

[0018] Figure 2 is a frame schematic diagram of a data processing method embodiment of the present application;

[0019] Figure 3 is a step flow chart of another data processing method embodiment provided by the present application;

[0020] Figure 4 is a structure block diagram of a data processing device embodiment of a camera of the present application. DETAILED DESCRIPTION

[0021] In order to make the above objectives, characteristics and advantages of the present application more obvious and easy to understand, the present application will be further described in detail below with reference to the drawings and specific embodiments.

[0022] Currently, the page controller needs to be responsible for the page data update of the list view, network request, data acquisition, interaction with the data model, and interaction with the cell view. With the increasing complexity of the business logic of the project, the complexity of the business logic causes the complexity of the page controller to increase. In order to reduce the complexity of the page controller, the present application separately creates an object, that is, an auxiliary object, to process the data and touch events of the list view (table view), so as to realize that the data and event processing are processed in the object, the complexity of the page controller is reduced, the program becomes easy to maintain, the difficulty of unit testing is reduced, and the reliability of the program is improved. The present application will be described below in combination with Figure 1 The embodiment of the present application is introduced:

[0023] Referring to Figure 1 , Figure 1 is a step flowchart of an embodiment of a data processing method of the present application. The method can be executed by a data processing device, which can be deployed in a mobile terminal such as a smart phone or a tablet computer. Specifically, the method can include the following steps:

[0024] Step 101, sending a network request to a server through an auxiliary object, so that the server sends request data corresponding to the network request to the auxiliary object.

[0025] The auxiliary object is created in the page controller.

[0026] Referring to Figure 2 , Figure 2 is a framework schematic diagram of an embodiment of a data processing method of the present application. As shown in Figure 2 the solid arrowhead indicates the process of initiating a network request, acquiring request data, updating data in a data model, and refreshing data on a first target cell view. The auxiliary object 201 sends a network request to the server 202. The auxiliary object 201 is created in the page controller 203. Specifically, the auxiliary object 201 can be an "auxiliary object" created in the page controller. The "auxiliary object" can be created in the page loading method of the page controller 203, for example, (void)viewDidLoad.

[0027] Step 102, receiving the request data sent by the server through the auxiliary object, and updating the request data into a target data model, wherein the target data model is created in the auxiliary object.

[0028] As shown in Figure 2As shown, after receiving the network request, the server 202 sends the request data requested by the network request to the auxiliary object 201. Correspondingly, the auxiliary object 201 receives the request data and updates the request data to the target data model 204. Wherein, the auxiliary object 201 updates the request data to the target data model 204 can be realized by the following steps:

[0029] The auxiliary object 201 transmits the request data to the target data model 204, so that the target processing model 204 loads the request data.

[0030] It should be noted that the format of the request data transmitted by the auxiliary object 201 to the target data model 204 can be JSON format. After the target data model 204 obtains the request data in JSON format, the target data model 204 can perform data conversion on the request data in JSON format, and then load the request data after format conversion.

[0031] Wherein, the target data model in the embodiment can include a data model created before receiving the request data and / or a data model created after receiving the request data. If the network request of step 101 is the first time that the auxiliary object sends to the server, after the auxiliary object receives the request data, it is necessary to create a data model based on the request data. For example, after the auxiliary object sends the network request to the server for the first time, the request data for requesting the number of likes of message A published by Zhang San and the number of likes of message B published by Li Si, after the auxiliary object receives the request data, it is necessary to create two data models (model), data model 1 and data model 2, data model 1 corresponds to Zhang San, data model 2 corresponds to Li Si, data model 1 is used to load the number of likes of Zhang San, and data model 2 is used to load the number of likes of Li Si. In this case, the target data model includes the data model 1 and the data model 2 created after receiving the request data.

[0032] If the auxiliary object sends the network request to the server for the first time, and creates the above-mentioned data model 1 and data model 2 after receiving the request data, then the auxiliary object sends the network request to the server for the second time, this time the request data for requesting the number of likes of message A published by Zhang San, the number of likes of message B published by Li Si, and the number of likes of message C published by Wang Wu, in this case, the auxiliary object receives the request data, and needs to create a data model 3 based on the request data requested this time, the data model 3 is used to load the number of likes of Wang Wu. In this case, the target data model includes the data model 1, the data model 2 created before receiving the request data, and the data model 3 created after receiving the request data.

[0033] If the auxiliary object sends a network request to the server for the first time, and the data model 1 and the data model 2 are created after receiving the request data, then the auxiliary object sends a network request to the server for the second time, and the like number and the collection number of the message A published by Zhang San and the like number and the collection number of the message B published by Li Si are requested in this time, in this case, the auxiliary object can not create the data model after receiving the request data, that is, the target data model includes the data model 1 and the data model 2, the like number of the message A requested for the second time is used to update the like number of the message A requested for the first time, and the collection number of the message A requested for the second time is loaded to the data model 1. Similarly, the like number of the message B requested for the second time is used to update the like number of the message B requested for the first time, and the collection number of the message B requested for the second time is loaded to the data model 2.

[0034] The data processing method provided in the embodiment can be used to send a network request to the server by the auxiliary object, so that the server sends the request data corresponding to the network request to the auxiliary object, the auxiliary object receives the request data sent by the server, and the request data is updated to the target data model, and the target data model is created in the auxiliary object. Therefore, the network request can be initiated by the auxiliary object, the request data can be acquired, and the request data can be updated to the target data model, that is, the network request, the acquisition of the request data, and the interaction with the target data model are completed by the auxiliary object, the page controller does not need to initiate the network request and acquire the request data, and the page controller does not need to load the interaction between the data model, so that the complexity of the page controller is reduced, the program is convenient to maintain and test, and the reliability of the program can be improved.

[0035] Reference Figure 3 , Figure 3 is a step flowchart of another data processing method embodiment provided by the application, and the method includes the following steps:

[0036] In step 301, a network request is sent to the server by the auxiliary object, so that the server sends the request data corresponding to the network request to the auxiliary object.

[0037] In step 302, the request data sent by the server is received by the auxiliary object, and the request data is updated to the target data model, and the target data model is created in the auxiliary object.

[0038] In step 303, the proxy object of the list view is notified by the auxiliary object, so that the target method of the list view is called by the proxy object.

[0039] The target method is used to display the requested data on the first target cell view, the list view is created in the page controller, and the proxy object and the first target cell view are created in the auxiliary object.

[0040] Reference Figure 2 List view 205 is created in page controller 203, while proxy object and first target cell view 206 are created in auxiliary object 201. The first target cell view can include cell views created before and / or created after receiving the request data. For example, after the auxiliary object sends a network request to the server for the first time, requesting the number of likes for message A posted by Zhang San and the number of likes for message B posted by Li Si, then after receiving this request data, in addition to creating two data models (data model 1 and data model 2), the auxiliary object also needs to create a cell view. Figure 1 and unit view Figure 2 There are two cell views. Figure 1 Corresponding to data model 1, unit view Figure 2 Corresponding to data model 2. Unit view Figure 1 Used to display the number of likes for message A, unit view Figure 2 Used to display the number of likes for message B. In this case, the first target cell view includes the cell view created after receiving the request data. Figure 1 and unit view Figure 2 .

[0041] If the auxiliary object sends a network request to the server for the first time and creates the aforementioned unit view after receiving the request data... Figure 1 and unit view Figure 2 Then, the auxiliary object sends a second network request to the server, this time requesting data on the number of likes for Zhang San's message A, Li Si's message B, and Wang Wu's message C. In this case, after receiving the request data, the auxiliary object needs to create another unit view based on the requested data. Figure 3 This unit views Figure 3 This is used to display the number of likes Wang Wu has received. In this case, the target cell view includes cell views that were created before the requested data was received. Figure 1 Unit view Figure 2 and the unit view created after receiving the request data. Figure 3 .

[0042] If the auxiliary object sends a network request to the server for the first time and creates the aforementioned unit view after receiving the request data... Figure 1 and unit view Figure 2After that, the auxiliary object sends a network request to the server for the second time, and requests the like for the number of likes of message A published by Zhang San and the number of likes of message B published by Li Si. In this case, the auxiliary object can not create a unit view again after receiving the request data, that is, the target unit view includes the unit views created by the auxiliary object before sending the network request to the server for the second time Figure 1 and the unit view Figure 2 , the unit view Figure 1 for displaying the number of likes of message A re-requested, the unit view Figure 2 for displaying the number of likes of message B re-requested. In this case, the first target unit view includes the unit views created by the auxiliary object before sending the network request to the server for the second time Figure 1 and the unit view Figure 2 .

[0043] It should be noted that the target method is used to display the request data on the first target unit view, and the target method can be, for example, (UITableViewCell *) tableView: (UITableView *) tableView cellForRowAtIndexPath: (NSIndexPath *) indexPath. The delegate object of the list view 205 is created in the auxiliary object 201, and the delegate object of the list view can be created in the auxiliary object after the list view and the auxiliary object are created in the page controller.

[0044] In the prior art, the page controller is responsible for updating the page data of the list view. In the embodiment, the auxiliary object calls the target method of the list view through the delegate object of the list view, so that the request data can be displayed on the first target unit view, and the data on the first target unit view can be updated by using the request data, that is, the auxiliary object refreshes the page data instead of the page controller, so that the complexity of the page controller can be further reduced, and the unit test of the program can be facilitated, and the reliability of the program can be improved.

[0045] In step 304, the auxiliary object listens to the operation of the user on the second target unit view to obtain operation information of the user on the second target unit view, and transmits the operation information to the data model corresponding to the second target unit view in the target data model.

[0046] The second target unit view is any one of the first target unit view.

[0047] For example Figure 2The auxiliary object 201 can listen to the operation of the user 207 on the second target unit view to obtain the operation information of the user on the second target unit view, and pass the operation information to the data model corresponding to the second target unit view in the target data model 204. Then, the data in the data model is refreshed by the data model, so that the auxiliary object obtains the operation information of the user through the listening mechanism, and records the operation information into the data model.

[0048] For example, there are two unit views displayed on the page, unit view A is an "agree" button, and unit view B is a "cancel" button. If the user clicks unit view A, unit view A is the second target unit view, and the auxiliary object 201 can listen to the operation of the user clicking unit view A and obtain the operation information of the user on unit view A, that is, the click event information of the user. Figure 1 The auxiliary object 201 passes the click event information to the data model corresponding to unit view A, the data model obtains the click event information, and stores the meaning represented by the click operation, that is, "agree" if the user clicks unit view A, or "cancel" if the user clicks unit view B.

[0049] In the prior art, if the operation information of the user on the unit view is to be obtained, a proxy object of the unit view needs to be created in the page controller. If the user performs an operation on the unit view, the unit view needs to tell the proxy object the operation information. The proxy object interacts with the page controller, and the page controller stores the data, which causes the association between the unit view and the page controller to be relatively strong and the coupling degree to be high. In the embodiment, the operation information of the user is obtained through the listening mechanism of the auxiliary object, and the operation information is recorded into the data model, so that the complexity of the page controller can be further reduced, and the coupling degree between the unit view and the page controller can be reduced.

[0050] It should be noted that the sequence numbers of the above steps do not represent the execution sequence of the steps.

[0051] Optionally, after the auxiliary object receives the request data sent by the server, the following steps can be further included:

[0052] The auxiliary object creates a data model and a unit view in the auxiliary object based on the request data;

[0053] The target data model includes the created data model, and the first target unit view includes the created unit view.

[0054] It should be noted that, for the method embodiments, the series of acts combined is described for simplicity, but those skilled in the art should know that the present application is not limited to the order of the acts described, because according to the present application, certain steps can be performed in other orders or at the same time. Secondly, those skilled in the art should know that the embodiments described in the specification are all preferred embodiments, and the acts involved are not necessarily the necessary acts of the present application.

[0055] With reference to Figure 4 , Figure 4 is a structural block diagram of a camera data processing device embodiment of the present application, which can specifically include the following modules:

[0056] The sending module 410 is configured to send a network request to a server through an auxiliary object, so that the server sends request data corresponding to the network request to the auxiliary object, wherein the auxiliary object is created in a page controller.

[0057] The receiving module 420 is configured to receive the request data sent by the server through the auxiliary object, and update the request data into a target data model, wherein the target data model is created in the auxiliary object.

[0058] The data processing device provided in the embodiment sends a network request to a server through an auxiliary object, so that the server sends request data corresponding to the network request to the auxiliary object, wherein the auxiliary object is created in a page controller. The auxiliary object receives the request data sent by the server, and updates the request data into a target data model, wherein the target data model is created in the auxiliary object. Thus, the network request can be initiated by the auxiliary object, the request data can be obtained, and the request data can be updated into the target data model. That is, the initiation of the network request, the obtaining of the request data, and the interaction with the target data model are completed by the auxiliary object, without the need for the page controller to initiate the network request and obtain the request data, and without the need for the page controller to load the interaction between the data model, thereby reducing the complexity of the page controller, facilitating the maintenance and testing of the program, and further improving the reliability of the program.

[0059] In a preferred embodiment of the present application, it further includes:

[0060] The calling module is configured to notify a proxy object through a list view through the auxiliary object, so that the proxy object calls a target method of the list view.

[0061] The target method is configured to display the request data on a first target cell view. The list view is created in the page controller, and the proxy object and the first target cell view are created in the auxiliary object.

[0062] In a preferred embodiment of the present application, further comprising:

[0063] The listening module is configured to listen to the operation of the user on the second target unit view through the auxiliary object, to obtain operation information of the operation of the user on the second target unit view, and to pass the operation information to the data model corresponding to the second target unit view in the target data model.

[0064] The second target unit view is any one of the first target unit views.

[0065] In a preferred embodiment of the present application, further comprising:

[0066] The creating module is configured to create a data model and a unit view in the auxiliary object through the auxiliary object based on the request data.

[0067] The target data model comprises the created data model, and the first target unit view comprises the created unit view.

[0068] For the device embodiment, since it is basically similar to the method embodiment, the description is relatively simple, and the related parts refer to the part of the method embodiment.

[0069] Each embodiment in the specification is described in a progressive manner, and each embodiment focuses on the difference from other embodiments. The same and similar parts of each embodiment can be referred to each other.

[0070] Those skilled in the art should understand that the embodiments of the present application can be provided as a method, a device, or a computer program product. Therefore, the embodiments of the present application can be in the form of a complete hardware embodiment, a complete software embodiment, or an embodiment combining software and hardware aspects. Moreover, the embodiments of the present application can be in the form of a computer program product implemented on one or more computer usable storage media (including but not limited to disk memory, CD-ROM, optical memory, etc.) containing computer usable program codes.

[0071] The embodiments of the present application are described with reference to the flowchart illustrations and / or block diagrams of the methods, terminal devices (systems) and computer program products according to the embodiments of the present application. It will be understood that each block of the flowchart illustrations and / or block diagrams, and combinations of blocks in the flowchart illustrations and / or block diagrams, can be implemented by computer program instructions. These computer program instructions can be provided to a processor of a general purpose computer, special purpose computer, embedded processor, or other programmable data processing terminal devices to produce a machine, such that the instructions, which execute via the processor of the computer or other programmable data processing terminal devices, create means for implementing the functions specified in the flowchart illustrations and / or block diagrams block or blocks. Figure 1 one or more of the flowcharts and / or block diagrams. Figure 1 one or more of the flowcharts and / or block diagrams.

[0072] These computer program instructions can also be stored in a computer-readable memory that can direct a computer or other programmable data processing terminal devices to function in a particular manner, such that the instructions stored in the computer-readable memory produce an article of manufacture including instructions which implement the function specified in the flowchart illustrations and / or block diagrams block or blocks. Figure 1 one or more of the flowcharts and / or block diagrams. Figure 1 one or more of the flowcharts and / or block diagrams.

[0073] These computer program instructions can also be loaded onto a computer or other programmable data processing terminal devices, such that a series of operational steps are carried out on the computer or other programmable terminal devices to produce a computer implemented process so that the instructions executed on the computer or other programmable terminal devices provide steps for implementing the functions specified in the flowchart illustrations and / or block diagrams block or blocks. Figure 1 one or more of the flowcharts and / or block diagrams. Figure 1 one or more of the flowcharts and / or block diagrams.

[0074] Although preferred embodiments of the present application have been described, those skilled in the art will be able to make additional modifications and variations to the embodiments without departing from the scope of the present application. Accordingly, the appended claims are intended to encompass all such modifications and variations as falling within the scope of the embodiments of the present application.

[0075] Finally, it is to be understood that the phraseology or terminology such as "first" and "second" etc. used herein is merely intended to differentiate one entity or operation from another entity or operation, without necessarily requiring or implying any actual such relationship or order between such entities or operations. Moreover, the terms "comprising", "including", or any other closure, are intended to cover the non-exclusive inclusion such that a process, method, article, or apparatus that comprises a list of elements does not include those elements alone but can include other elements not expressly listed or even include elements inherent in such process, method, article, or apparatus. Without more limitations, the element defined by the statement "comprising a" does not exclude the presence of additional identical elements in the process, method, article, or apparatus including the element.

[0076] The above describes in detail the electronic focusing method of the camera and the electronic focusing device of the camera provided by the present application. The principles and implementation manners of the present application are described by using specific examples. The above description of the embodiments is only used to help understand the method of the present application and its core idea. Meanwhile, for those skilled in the art, the specific implementation manners and application ranges can be changed according to the idea of the present application. In summary, the content of the specification should not be understood as a limitation of the present application.

Claims

1. A data processing method, characterized in that, The method includes: A network request is sent to the server through an auxiliary object, so that the server sends the request data corresponding to the network request to the auxiliary object, wherein the auxiliary object is created in the page controller; The auxiliary object receives the request data sent by the server and updates the request data into the target data model. The target data model is created in the auxiliary object. The auxiliary object updates the request data into the target data model by passing the request data to the target data model so that the target processing model loads the request data. The method further includes: The auxiliary object is used to listen to the user's operations on the second target unit view, so as to obtain the operation information of the user's operations on the second target unit view, and the operation information is transmitted to the data model corresponding to the second target unit view in the target data model; The second target unit view can be any one of the first target unit views.

2. The method according to claim 1, characterized in that, Also includes: The helper object notifies the list view's proxy object, causing the proxy object to invoke the list view's target method. The target method is used to display the request data on a first target unit view, the list view is created in the page controller, and the proxy object and the first target unit view are created in the auxiliary object.

3. The method according to claim 1, characterized in that, After receiving the request data sent by the server through the auxiliary object, the method further includes: Based on the requested data, a data model and a unit view are created using the auxiliary object; The target data model includes the created data model, and the first target cell view includes the created cell view.

4. A data processing apparatus, characterized in that, The device includes: The sending module is used to send a network request to the server through an auxiliary object, so that the server sends the request data corresponding to the network request to the auxiliary object, wherein the auxiliary object is created in the page controller; A receiving module is configured to receive the request data sent by the server through the auxiliary object, and update the request data into the target data model, wherein the target data model is created in the auxiliary object, and the auxiliary object updating the request data into the target data model includes: the auxiliary object passing the request data to the target data model so that the target processing model loads the request data; The device further includes: The monitoring module is used to monitor the user's operations on the second target unit view through the auxiliary object, so as to obtain the operation information of the user's operations on the second target unit view, and to pass the operation information to the data model corresponding to the second target unit view in the target data model; The second target unit view can be any one of the first target unit views.

5. The apparatus according to claim 4, characterized in that, Also includes: The calling module is used to notify the proxy object of the list view through the auxiliary object, so that the proxy object calls the target method of the list view; The target method is used to display the request data on a first target unit view, the list view is created in the page controller, and the proxy object and the first target unit view are created in the auxiliary object.

6. The apparatus according to claim 4, characterized in that, Also includes: A creation module is used to create a data model and a unit view in the auxiliary object based on the requested data; The target data model includes the created data model, and the first target cell view includes the created cell view.

7. A data processing apparatus, characterized in that, include: One or more processors; and One or more machine-readable media having instructions stored thereon, which, when executed by the one or more processors, cause the apparatus to perform the data processing method as described in any one of claims 1 to 3.

8. A computer-readable storage medium, characterized in that, The stored computer program causes the processor to perform the data processing method as described in any one of claims 1 to 3.

Citation Information

Patent Citations

  • Method for rapidly realizing the application layer layout of a mobile terminal, and framework

    CN109542435A

  • Page view display method and device, equipment and storage medium

    CN109634599A