CN106959806B - Page identity obtaining method and device - Google Patents

Page identity obtaining method and device Download PDF

Info

Publication number
CN106959806B
CN106959806B CN201710175691.2A CN201710175691A CN106959806B CN 106959806 B CN106959806 B CN 106959806B CN 201710175691 A CN201710175691 A CN 201710175691A CN 106959806 B CN106959806 B CN 106959806B
Authority
CN
China
Prior art keywords
page
identity
instruction
display
preset
Prior art date
Legal status (The legal status is an assumption and is not a legal conclusion. Google has not performed a legal analysis and makes no representation as to the accuracy of the status listed.)
Active
Application number
CN201710175691.2A
Other languages
Chinese (zh)
Other versions
CN106959806A (en
Inventor
张兴国
陈少杰
张文明
Current Assignee (The listed assignees may be inaccurate. Google has not performed a legal analysis and makes no representation or warranty as to the accuracy of the list.)
Wuhan Douyu Network Technology Co Ltd
Original Assignee
Wuhan Douyu Network 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 Wuhan Douyu Network Technology Co Ltd filed Critical Wuhan Douyu Network Technology Co Ltd
Priority to CN201710175691.2A priority Critical patent/CN106959806B/en
Publication of CN106959806A publication Critical patent/CN106959806A/en
Application granted granted Critical
Publication of CN106959806B publication Critical patent/CN106959806B/en
Active legal-status Critical Current
Anticipated expiration legal-status Critical

Links

Images

Classifications

    • GPHYSICS
    • G06COMPUTING; CALCULATING OR COUNTING
    • G06FELECTRIC DIGITAL DATA PROCESSING
    • G06F3/00Input arrangements for transferring data to be processed into a form capable of being handled by the computer; Output arrangements for transferring data from processing unit to output unit, e.g. interface arrangements
    • G06F3/01Input arrangements or combined input and output arrangements for interaction between user and computer
    • G06F3/048Interaction techniques based on graphical user interfaces [GUI]
    • G06F3/0484Interaction techniques based on graphical user interfaces [GUI] for the control of specific functions or operations, e.g. selecting or manipulating an object, an image or a displayed text element, setting a parameter value or selecting a range
    • GPHYSICS
    • G06COMPUTING; CALCULATING OR COUNTING
    • G06FELECTRIC DIGITAL DATA PROCESSING
    • G06F16/00Information retrieval; Database structures therefor; File system structures therefor
    • G06F16/90Details of database functions independent of the retrieved data types
    • G06F16/95Retrieval from the web
    • G06F16/958Organisation or management of web site content, e.g. publishing, maintaining pages or automatic linking
    • G06F16/972Access to data in other repository systems, e.g. legacy data or dynamic Web page generation

Abstract

The invention provides a page identity obtaining method and device, which are applied to an Android system, and the method comprises the following steps: receiving triggering of page switching, and creating a display object based on a preset class to display a switched page, wherein the preset class inherits Activity and comprises a page identity acquisition instruction; executing the page identity acquisition instruction to acquire page identity parameters of the switched page transmitted between display objects during page switching display; and storing the page identity parameters. Therefore, the identity of the page entered by the user operation can be automatically acquired, the efficiency of collecting and analyzing the user operation by a developer is improved, the code is cleaner and tidier, and the human programming errors are reduced.

Description

Page identity obtaining method and device
Technical Field
The invention relates to the technical field of data information acquisition, in particular to a page identity acquisition method and device.
Background
In order to obtain better user experience, the application program collects the operation behavior of the user as the basis of the improved program, wherein obtaining the identity information of the display page of the user for executing the operation is an important link in the operation behavior collection process. In the prior art, the identity of a page executed by an operation behavior needs to be marked after the operation behavior is collected, so that the operation is complicated and errors are easily generated. And a special page identity acquisition program needs to be set, so that the development cost is high, the required parameters are many, and the data maintenance is inconvenient.
Disclosure of Invention
In order to overcome the defects in the prior art, the invention aims to provide a page identity obtaining method applied to an Android system, and the method comprises the following steps:
receiving triggering of page switching, and creating a display object based on a preset class to display a switched page, wherein the preset class inherits Activity and comprises a page identity acquisition instruction;
executing the page identity acquisition instruction to acquire page identity parameters of the switched page transmitted between display objects during page switching display;
and storing the page identity parameters.
Further, in the above method, the preset class includes a page creation instruction, and the page identity obtaining instruction includes a transmission parameter obtaining instruction in the page creation instruction; the step of executing the page identity obtaining instruction to obtain the page identity parameters of the switched page transmitted between the display objects during page switching display includes:
and re-executing a page creation instruction inherited to the preset class in the creation stage of the display object, and acquiring a designated parameter transmitted between the display objects during page switching as the page identity parameter through the transmission parameter acquisition instruction in the execution process of the page creation instruction.
Further, in the above method, the step of storing the page identity parameter includes:
detecting whether stored page identity parameters exist in a memory;
when the stored page identity parameters exist, the stored page identity parameters are removed, and the currently obtained page identity parameters are stored in a memory in a character string mode.
Further, in the above method, the method further comprises:
acquiring an operation record on a current display page, and judging whether the current entering page is a preset type page or not according to the page identity parameter;
when the current entering page is the page of the preset type, the operation record is marked as the operation record on the preset page;
and when the current entering page is not the page of the preset type, marking the operation record as the operation record on the non-preset page.
Further, in the above method, the method further comprises:
and sending the marked operation record to a server.
Further, in the above method, the method further comprises:
and creating a preset class inherited to the Activity, and adding the page identity acquisition instruction into the preset class.
The invention also provides a page identity acquisition device, which is applied to an Android system, and comprises the following components:
the system comprises a trigger receiving module, a display module and a display module, wherein the trigger receiving module is used for receiving the trigger of switching the page and creating a display object based on a preset class to display the switched page, and the preset class inherits Activity and comprises a page identity acquiring instruction;
the parameter acquisition module is used for executing the page identity acquisition instruction to acquire page identity parameters of the switched page transmitted between the display objects during page switching display;
and the storage module is used for storing the page identity parameters.
Further, in the above apparatus, the preset class includes a page creation instruction, and the page identity obtaining instruction includes a transmission parameter obtaining instruction in the page creation instruction; the step of acquiring the identity parameter by the parameter acquisition module comprises:
and re-executing a page creation instruction inherited to the preset class in the creation stage of the display object, and acquiring a designated parameter transmitted between the display objects during page switching as the page identity parameter through the transmission parameter acquisition instruction in the execution process of the page creation instruction.
Further, in the above apparatus, the step of storing the identity parameter by the storage module includes:
detecting whether stored page identity parameters exist in a memory;
when the stored page identity parameters exist, the stored page identity parameters are removed, and the currently obtained page identity parameters are stored in a memory in a character string mode.
Further, in the above apparatus, the apparatus further comprises:
the judging module is used for acquiring the operation record on the current display page and judging whether the current entering page is a page of a preset type or not according to the page identity parameter;
the first marking module is used for marking the operation record as an operation record on a preset page when the current entering page is the page of the preset type;
and the second marking module is used for marking the operation record as the operation record on the non-preset page when the current entering page is not the page of the preset type.
Compared with the prior art, the invention has the following beneficial effects:
according to the method and the device for acquiring the page identity, the preset class inherited to the Activity is provided, and when the page is displayed, the page identity acquisition instruction in the preset class is executed to automatically record the page identity. Therefore, the identity of the page entered by the user operation can be automatically acquired, the efficiency of collecting and analyzing the user operation by a developer is improved, the code is cleaner and tidier, and the human programming errors are reduced.
Drawings
In order to more clearly illustrate the technical solutions of the embodiments of the present invention, the drawings needed to be used in the embodiments will be briefly described below, it should be understood that the following drawings only illustrate some embodiments of the present invention and therefore should not be considered as limiting the scope, and for those skilled in the art, other related drawings can be obtained according to the drawings without inventive efforts.
Fig. 1 is a schematic diagram of a user terminal according to an embodiment of the present invention;
fig. 2 is a schematic flowchart illustrating steps of a page identity obtaining method according to an embodiment of the present invention;
fig. 3 is a schematic diagram illustrating interaction between a user terminal and a server according to an embodiment of the present invention;
fig. 4 is a schematic diagram of a page identity obtaining apparatus according to an embodiment of the present invention.
Icon: 100-a user terminal; 110-a page identity obtaining means; 111-trigger receiving module; 112-parameter acquisition module; 113-a storage module; 120-a memory; 130-a processor; 200-a server; 300-network.
Detailed Description
In order to make the objects, technical solutions and advantages of the embodiments of the present invention clearer, the technical solutions in the embodiments of the present invention will be clearly and completely described below with reference to the drawings in the embodiments of the present invention, and it is obvious that the described embodiments are some, but not all, embodiments of the present invention. The components of embodiments of the present invention generally described and illustrated in the figures herein may be arranged and designed in a wide variety of different configurations.
Thus, the following detailed description of the embodiments of the present invention, presented in the figures, is not intended to limit the scope of the invention, as claimed, but is merely representative of selected embodiments of the invention. All other embodiments, which can be derived by a person skilled in the art from the embodiments given herein without making any creative effort, shall fall within the protection scope of the present invention.
It should be noted that: like reference numbers and letters refer to like items in the following figures, and thus, once an item is defined in one figure, it need not be further defined and explained in subsequent figures.
In the description of the present invention, it should also be noted that, unless otherwise explicitly specified or limited, the terms "disposed," "mounted," "connected," and "connected" are to be construed broadly and may, for example, be fixedly connected, detachably connected, or integrally connected; can be mechanically or electrically connected; they may be connected directly or indirectly through intervening media, or they may be interconnected between two elements. The specific meanings of the above terms in the present invention can be understood in specific cases to those skilled in the art.
As shown in fig. 1, the user terminal 100 according to the preferred embodiment of the present invention is provided, in this embodiment, the user terminal 100 may be, but is not limited to, a smart phone, a Personal Computer (PC), a tablet PC, a Personal Digital Assistant (PDA), a Mobile Internet Device (MID), and the like. The operating system of the user terminal 100 may be an Android (Android) system.
As shown in fig. 2, is a block diagram of the user terminal 100 shown in fig. 1. The user terminal 100 includes a page identity acquiring device 110, a memory 120 and a processor 130.
The memory 120 and the processor 130 are electrically connected to each other directly or indirectly to realize data transmission or interaction. For example, the components may be electrically connected to each other via one or more communication buses or signal lines. The page identity acquiring means 110 includes at least one software function module which can be stored in the memory 120 in the form of software or firmware (firmware) or solidified in an Operating System (OS) of the user terminal 100. The processor 130 is used for executing executable modules stored in the memory 120, such as software functional modules and computer programs included in the page identity acquiring device 110.
The Memory 120 may be, but is not limited to, a Random Access Memory (RAM), a Read Only Memory (ROM), a Programmable Read-Only Memory (PROM), an Erasable Read-Only Memory (EPROM), an electrically Erasable Read-Only Memory (EEPROM), and the like. The memory 120 is used for storing a program, and the processor 130 executes the program after receiving the execution instruction.
The processor 130 may be an integrated circuit chip having signal processing capabilities. The processor may be a general-purpose processor, including a Central Processing Unit (CPU), a Network Processor (NP), and the like; but may also be a Digital Signal Processor (DSP)), an Application Specific Integrated Circuit (ASIC), a Field Programmable Gate Array (FPGA) or other programmable logic device, discrete gate or transistor logic device, discrete hardware components. The various methods, steps and logic blocks disclosed in the embodiments of the present invention may be implemented or performed. A general purpose processor may be a microprocessor or the processor may be any conventional processor or the like.
Referring to fig. 2, fig. 2 is a flowchart of a method for acquiring page information applied to the user terminal 100 shown in fig. 1, and the method including various steps will be described in detail below.
Step S110, receiving a trigger of switching a page, and creating a display object based on a preset class to display the switched page, where the preset class inherits Activity and includes a page identity obtaining instruction.
In this embodiment, the method further includes creating a preset class inherited from Activity in advance, and adding the page identity obtaining method to the preset class.
In the Android system, each display page is a display object based on Activity, and the page entry time corresponding to the display object display page is required to be obtained for each display object. In order to facilitate the programming setting of the program, in this embodiment, a preset class inherited from Activity is set, and a page identity obtaining instruction is added to the preset class, so that all classes of the display objects are inherited from the preset class. Therefore, all the display objects are provided with all the attributes of Activity, and are provided with the newly added page identity acquisition instruction and the page entry time acquisition instruction in the preset class, so that the workload of independently configuring the class of each display object is reduced, and the manual errors of independent configuration are reduced.
Specifically, in the specific implementation manner of this embodiment, a preset class playbaseactivity may be created in the Android, then the playbaseactivity is inherited to the Activity by using the extensions keyword, a page identity obtaining instruction is added to the playbaseactivity, and a display object of a page is obtained from class instantiation based on the DotBaseActivity.
Step S120, executing the page identity obtaining instruction to obtain a page identity parameter of the switched page transmitted between the display objects when the page is switched and displayed.
Specifically, the preset class includes a page creation instruction, and the page identity obtaining instruction includes a transmission parameter obtaining instruction in the page creation instruction.
In an Android system, when a display page is switched, a face identity parameter of the page to be displayed is transmitted to a display object with the display page in an Intent mode.
Each display object has a fixed life cycle, which includes a creation phase, the user terminal 100 re-executes a page creation instruction inherited from the preset class in the creation phase of the display object, and in the execution process of the page creation instruction, obtains a specified parameter transferred between the display objects during page switching as the page identity parameter through the transfer parameter obtaining instruction.
For example, in the specific implementation manner of this embodiment, the Android system provides a getIntent () method to obtain Intent. The PlayerBaseActivity class includes a page creation instruction to execute an onCreate method, and the onCreate method includes a page identity acquisition instruction to execute a getIntent () method. The user terminal 100 re-executes the onCreate method in the creation phase of the display object, and a parameter transmitted between page display objects acquired by the getIntent (). getStringExtra ("roomld") method in the last line in the onCreate method is used as the page identity parameter.
Step S130, storing the page identity parameter.
Specifically, when the user terminal 100 stores the page identity information, it first detects whether the stored page identity parameter exists in the memory. When the stored page identity parameters exist, the stored page identity parameters are removed, and the currently obtained page identity parameters are stored in a memory in a character string mode. Therefore, the stored page identity parameter is ensured to be the page identity parameter of the latest page displayed currently.
Further, in this embodiment, the user terminal 100 may further obtain an operation record on the current display page, and determine whether the current incoming page is a preset type page according to the page identity parameter.
And when the current entering page is the page of the preset type, marking the operation record as the operation record on the preset page.
And when the current entering page is not the page of the preset type, marking the operation record as the operation record on the non-preset page.
For example, in the specific implementation manner of this embodiment, when a live view page needs to be labeled, the user terminal 100 determines whether the display page is a live view page according to the page identity parameter. The operation record comprises a roomID field.
For the non-live broadcast room page, the user terminal 100 fills the roomm id field in the operation record on the page with a null character creation to indicate that the page is the non-live broadcast room page. For the live broadcast room page, the user terminal 100 fills the roomm ID field in the operation record on the page into the page identity parameter obtained in step S130 as the room ID, so as to indicate that the page is the live broadcast room page. Therefore, the roommId parameter is automatically judged to be transmitted into the empty character string or the room ID through the page identity parameter, so that manual intervention is avoided, and the room ID is carried by the operation record of the non-live broadcast room.
Further, referring to fig. 3, the user terminal 100 may provide communication with the server 200 through a network 300.
In this embodiment, the user terminal 100 sends the marked operation record to the server 200.
Specifically, the user terminal 100 encrypts the operation record through an encryption algorithm encapsulated in the underlying so library, and then calls a server-side upload interface to upload information. The server 200 acquires the operation record and performs big data analysis, so that the user experience of the App is improved, and the platform content is adjusted.
Further, referring to fig. 4, the present embodiment further provides a page identity obtaining apparatus applied to the user terminal 100 shown in fig. 1, where the page identity obtaining apparatus includes: a trigger receiving module 111, a parameter obtaining module 112 and a storage module 113.
The trigger receiving module 111 is configured to receive a trigger for switching a page, and create a display object based on a preset class to display the switched page, where the preset class inherits Activity and includes a page identity obtaining instruction.
In this embodiment, the trigger receiving module 111 may be configured to execute step S110 shown in fig. 2, and reference may be made to the description of step S110 for a detailed description of the trigger receiving module 111.
The parameter obtaining module 112 is configured to execute the page identity obtaining instruction to obtain a page identity parameter of a switched page transmitted between display objects when a page is switched and displayed;
in this embodiment, the parameter obtaining module 112 may be configured to execute step S120 shown in fig. 2, and for a detailed description of the parameter obtaining module 112, reference may be made to the description of step S120.
Further, in this embodiment, the preset class includes a page creation instruction, and the page identity obtaining instruction includes a transmission parameter obtaining instruction in the page creation instruction; the step of acquiring the identity parameter by the parameter acquiring module 112 includes:
and re-executing a page creation instruction inherited to the preset class in the creation stage of the display object, and acquiring a designated parameter transmitted between the display objects during page switching as the page identity parameter through the transmission parameter acquisition instruction in the execution process of the page creation instruction.
The storage module 113 is configured to store the page identity parameter.
In this embodiment, the storage module 113 may be configured to execute step S130 shown in fig. 2, and reference may be made to the description of step S130 for a detailed description of the storage module 113.
Further, in this embodiment, the step of storing the identity parameter by the storage module 113 includes:
detecting whether stored page identity parameters exist in a memory;
when the stored page identity parameters exist, the stored page identity parameters are removed, and the currently obtained page identity parameters are stored in a memory in a character string mode.
Further, in this embodiment, the page identity obtaining apparatus further includes: the device comprises a judging module, a first labeling module and a second labeling module.
The judging module is used for acquiring the operation record on the current display page and judging whether the current entering page is a preset type page according to the page identity parameter.
The first marking module is used for marking the operation record as the operation record on the preset page when the current entering page is the page of the preset type.
And the second marking module is used for marking the operation record as the operation record on the non-preset page when the current entering page is not the page of the preset type.
In summary, according to the page identity obtaining method and device provided by the present invention, by providing a preset class inherited from Activity, when a page is displayed, a page identity obtaining instruction in the preset class is executed to automatically record a page identity. Therefore, the identity of the page entered by the user operation can be automatically acquired, the efficiency of collecting and analyzing the user operation by a developer is improved, the code is cleaner and tidier, and the human programming errors are reduced.
In the embodiments provided in the present application, it should be understood that the disclosed apparatus and method may be implemented in other ways. The apparatus embodiments described above are merely illustrative, and for example, the flowchart and block diagrams in the figures illustrate the architecture, functionality, and operation of possible implementations of apparatus, methods and computer program products according to various embodiments of the present invention. In this regard, each block in the flowchart or block diagrams may represent a module, segment, or portion of instructions, which comprises one or more executable instructions for implementing the specified logical function(s). It should also be noted that, in some alternative implementations, the functions noted in the block may occur out of the order noted in the figures. For example, two blocks shown in succession may, in fact, be executed substantially concurrently, or the blocks may sometimes be executed in the reverse order, depending upon the functionality involved. It will also be noted that each block of the block diagrams and/or flowchart illustration, and combinations of blocks in the block diagrams and/or flowchart illustration, can be implemented by special purpose hardware-based systems which perform the specified functions or acts, or combinations of special purpose hardware and computer instructions.
In addition, the functional modules in the embodiments of the present invention may be integrated together to form an independent part, or each module may exist separately, or two or more modules may be integrated to form an independent part.
The functions, if implemented in the form of software functional modules and sold or used as a stand-alone product, may be stored in a computer readable storage medium. Based on such understanding, the technical solution of the present invention may be embodied in the form of a software product, which is stored in a storage medium and includes instructions for causing a computer device (which may be a personal computer, a server, or a network device) to execute all or part of the steps of the method according to the embodiments of the present invention. And the aforementioned storage medium includes: a U disk, a removable hard disk, a Read-Only Memory (ROM), a Random Access Memory (RAM), a magnetic disk or an optical disk, and other various media capable of storing program instructions.
It is noted that, herein, relational terms such as first and second, and the like may be used solely to distinguish one entity or action from another entity or action without necessarily requiring or implying any actual such relationship or order between such entities or actions. Also, the terms "comprises," "comprising," or any other variation thereof, are intended to cover a non-exclusive inclusion, such that a process, method, article, or apparatus that comprises a list of elements does not include only those elements but may include other elements not expressly listed or inherent to such process, method, article, or apparatus. Without further limitation, an element defined by the phrase "comprising an … …" does not exclude the presence of other identical elements in a process, method, article, or apparatus that comprises the element.
The above description is only a preferred embodiment of the present invention and is not intended to limit the present invention, and various modifications and changes may be made by those skilled in the art. Any modification, equivalent replacement, or improvement made within the spirit and principle of the present invention should be included in the protection scope of the present invention. It should be noted that: like reference numbers and letters refer to like items in the following figures, and thus, once an item is defined in one figure, it need not be further defined and explained in subsequent figures.

Claims (8)

1. A page identity obtaining method is applied to an Android system and is characterized by comprising the following steps:
receiving triggering of page switching, and creating a display object based on a preset class to display a switched page, wherein the preset class inherits Activity and comprises a page identity acquisition instruction;
executing the page identity acquisition instruction to acquire page identity parameters of the switched page transmitted between display objects during page switching display;
storing the page identity parameters;
the preset class comprises a page creating instruction, and the page identity acquiring instruction comprises a transmission parameter acquiring instruction in the page creating instruction;
the step of executing the page identity obtaining instruction to obtain the page identity parameters of the switched page transmitted between the display objects during page switching display includes:
and re-executing a page creation instruction inherited to the preset class in the creation stage of the display object, and acquiring a designated parameter transmitted between the display objects during page switching as the page identity parameter through the transmission parameter acquisition instruction in the execution process of the page creation instruction.
2. The method of claim 1, wherein the step of storing the page identity parameter comprises:
detecting whether stored page identity parameters exist in a memory;
when the stored page identity parameters exist, the stored page identity parameters are removed, and the currently obtained page identity parameters are stored in a memory in a character string mode.
3. The method of claim 1, further comprising:
acquiring an operation record on a current display page, and judging whether the current entering page is a preset type page or not according to the page identity parameter;
when the current entering page is the page of the preset type, the operation record is marked as the operation record on the preset page;
and when the current entering page is not the page of the preset type, marking the operation record as the operation record on the non-preset page.
4. The method of claim 3, further comprising:
and sending the marked operation record to a server.
5. The method of claim 1, further comprising:
and creating a preset class inherited to the Activity, and adding the page identity acquisition instruction into the preset class.
6. A page identity acquisition device is applied to an Android system, and is characterized by comprising:
the system comprises a trigger receiving module, a display module and a display module, wherein the trigger receiving module is used for receiving the trigger of switching the page and creating a display object based on a preset class to display the switched page, and the preset class inherits Activity and comprises a page identity acquiring instruction;
the parameter acquisition module is used for executing the page identity acquisition instruction to acquire page identity parameters of the switched page transmitted between the display objects during page switching display;
the storage module is used for storing the page identity parameters;
the preset class comprises a page creating instruction, and the page identity acquiring instruction comprises a transmission parameter acquiring instruction in the page creating instruction; the step of acquiring the identity parameter by the parameter acquisition module comprises:
and re-executing a page creation instruction inherited to the preset class in the creation stage of the display object, and acquiring a designated parameter transmitted between the display objects during page switching as the page identity parameter through the transmission parameter acquisition instruction in the execution process of the page creation instruction.
7. The apparatus of claim 6, wherein the storage module performs the step of storing the identity parameter, comprising:
detecting whether stored page identity parameters exist in a memory;
when the stored page identity parameters exist, the stored page identity parameters are removed, and the currently obtained page identity parameters are stored in a memory in a character string mode.
8. The apparatus of claim 6, further comprising:
the judging module is used for acquiring the operation record on the current display page and judging whether the current entering page is a page of a preset type or not according to the page identity parameter;
the first marking module is used for marking the operation record as an operation record on a preset page when the current entering page is the page of the preset type;
and the second marking module is used for marking the operation record as the operation record on the non-preset page when the current entering page is not the page of the preset type.
CN201710175691.2A 2017-03-22 2017-03-22 Page identity obtaining method and device Active CN106959806B (en)

Priority Applications (1)

Application Number Priority Date Filing Date Title
CN201710175691.2A CN106959806B (en) 2017-03-22 2017-03-22 Page identity obtaining method and device

Applications Claiming Priority (1)

Application Number Priority Date Filing Date Title
CN201710175691.2A CN106959806B (en) 2017-03-22 2017-03-22 Page identity obtaining method and device

Publications (2)

Publication Number Publication Date
CN106959806A CN106959806A (en) 2017-07-18
CN106959806B true CN106959806B (en) 2020-08-04

Family

ID=59470964

Family Applications (1)

Application Number Title Priority Date Filing Date
CN201710175691.2A Active CN106959806B (en) 2017-03-22 2017-03-22 Page identity obtaining method and device

Country Status (1)

Country Link
CN (1) CN106959806B (en)

Families Citing this family (1)

* Cited by examiner, † Cited by third party
Publication number Priority date Publication date Assignee Title
CN113282859A (en) * 2021-04-30 2021-08-20 北京仁科互动网络技术有限公司 Method and device for obtaining visitor identity information, electronic equipment and storage medium

Citations (5)

* Cited by examiner, † Cited by third party
Publication number Priority date Publication date Assignee Title
CN103853774A (en) * 2012-12-04 2014-06-11 金蝶软件(中国)有限公司 Page data configuration method, device and system
CN104618412A (en) * 2013-11-05 2015-05-13 杭州海康威视数字技术股份有限公司 Page skipping method and device
CN104657372A (en) * 2013-11-20 2015-05-27 腾讯科技(深圳)有限公司 Page operation data processing method and device
CN105094683A (en) * 2015-06-30 2015-11-25 北京金山安全软件有限公司 Data display method and device
CN106033372A (en) * 2015-03-19 2016-10-19 阿里巴巴集团控股有限公司 Page switching method and apparatus

Family Cites Families (5)

* Cited by examiner, † Cited by third party
Publication number Priority date Publication date Assignee Title
US8370203B2 (en) * 2002-10-07 2013-02-05 Amazon Technologies, Inc. User interface and methods for recommending items to users
US8549047B2 (en) * 2011-08-25 2013-10-01 Salesforce.Com, Inc. Computer implemented methods and apparatus for feed-based case management
CN104317884B (en) * 2014-10-21 2018-06-26 北京国双科技有限公司 The acquisition methods and device of website sources page type
CN106028166B (en) * 2016-06-24 2020-01-10 北京小米移动软件有限公司 Live broadcast room switching method and device in live broadcast process
CN106385636A (en) * 2016-10-08 2017-02-08 武汉斗鱼网络科技有限公司 Live broadcasting room jump method through message pushing and live broadcasting room jump system thereof

Patent Citations (5)

* Cited by examiner, † Cited by third party
Publication number Priority date Publication date Assignee Title
CN103853774A (en) * 2012-12-04 2014-06-11 金蝶软件(中国)有限公司 Page data configuration method, device and system
CN104618412A (en) * 2013-11-05 2015-05-13 杭州海康威视数字技术股份有限公司 Page skipping method and device
CN104657372A (en) * 2013-11-20 2015-05-27 腾讯科技(深圳)有限公司 Page operation data processing method and device
CN106033372A (en) * 2015-03-19 2016-10-19 阿里巴巴集团控股有限公司 Page switching method and apparatus
CN105094683A (en) * 2015-06-30 2015-11-25 北京金山安全软件有限公司 Data display method and device

Also Published As

Publication number Publication date
CN106959806A (en) 2017-07-18

Similar Documents

Publication Publication Date Title
CN107196788B (en) Method and device for processing buried point data, server and client
US11586697B2 (en) Publishing rest API changes based on subscriber's customized request
CN106843912B (en) Page information acquisition method and device
US20180336027A1 (en) Distributed versioning of applications using cloud-based systems
CN107729227B (en) Application program test range determining method, system, server and storage medium
WO2018103532A1 (en) Monitoring method and related device free of burying-point deployment
CN104750550A (en) Mobile terminal application management system and method and use time record generating method
CN106648685B (en) Intelligent terminal system application processing method and device and intelligent terminal
US20140281664A1 (en) Method and system for determining device configuration settings
WO2017206476A1 (en) Method, device and apparatus for detecting cpu occupation
CN107544903B (en) Page specification detection method and device and computer equipment
US11909640B2 (en) Creating endpoints
CN106959806B (en) Page identity obtaining method and device
CN108388616B (en) Data collection device, method, system and computer readable storage medium
CN111382259A (en) Analysis method and device for APP crash logs
CN114650167B (en) Abnormality detection method, abnormality detection device, abnormality detection equipment and computer-readable storage medium
US20150347402A1 (en) System and method for enabling a client system to generate file system operations on a file system data set using a virtual namespace
CN106708706B (en) Alarm information processing method and device for task program abnormity
CN111400245B (en) Art resource migration method and device
CN112579144B (en) Data processing method and device
CN114172978A (en) Multi-protocol equipment access method and related device
CN113656378A (en) Server management method, device and medium
CN110908876B (en) Method and device for acquiring hardware performance data
CN108572846B (en) Software management method and device
CN113094041A (en) Component management method and device of application program and computer equipment

Legal Events

Date Code Title Description
PB01 Publication
PB01 Publication
SE01 Entry into force of request for substantive examination
SE01 Entry into force of request for substantive examination
GR01 Patent grant
GR01 Patent grant