WO2017162072A1 - 一种页面跳转方法及装置 - Google Patents
一种页面跳转方法及装置 Download PDFInfo
- Publication number
- WO2017162072A1 WO2017162072A1 PCT/CN2017/076698 CN2017076698W WO2017162072A1 WO 2017162072 A1 WO2017162072 A1 WO 2017162072A1 CN 2017076698 W CN2017076698 W CN 2017076698W WO 2017162072 A1 WO2017162072 A1 WO 2017162072A1
- Authority
- WO
- WIPO (PCT)
- Prior art keywords
- page
- path
- jump
- target
- fallback
- Prior art date
Links
Images
Classifications
-
- G—PHYSICS
- G06—COMPUTING; CALCULATING OR COUNTING
- G06F—ELECTRIC DIGITAL DATA PROCESSING
- G06F16/00—Information retrieval; Database structures therefor; File system structures therefor
Definitions
- the present application relates to network technologies, and in particular, to a page jump method and apparatus.
- the present application provides a page jump method and apparatus to solve the problem that the user's Internet access experience is poor due to excessive APP memory consumption when the page is opened by the APP, and the number of backoffs is too large.
- the first aspect provides a page jump method, the method is applied to an application client, and the application client is associated with tree path information; the method includes:
- the page content of the current page is cached to the top of the stack and jumps from the current page to the target page through the jump target path.
- the second aspect provides a page fallback method, where the method is applied to an application client, and the application client is associated with tree path information; the method includes:
- the third aspect provides a page jump device, where the application client is installed, and the application client is associated with tree path information; the device includes:
- a first determining unit configured to determine, when the current page needs to jump to the target page, the first determining unit, configured to determine a jump target path to jump to the target page when the current page needs to jump to the target page ;
- a first acquiring unit configured to acquire, according to the tree path information, all the jump legal paths of the current page jump
- a first determining unit configured to determine whether the jump target path exists in the jump legal path
- a jump unit configured to: when the first determining unit determines that the jump target path exists in the jump legal path, cache the page content of the current page to the top of the stack, and pass the jump The target path jumps from the current page to the target page.
- the fourth aspect provides a page fallback device, where the device is installed with an application client, and the application client is associated with tree path information; the device includes:
- Determining a unit acquiring, according to the tree path information, all back-off legal paths of the current page;
- a determining unit determining whether the target back-off path exists in the fallback legal path
- a rollback unit configured to: when the determining unit determines whether the target backoff path exists in the fallback legal path, roll back to the history page by using the target backoff path, and cache the page Back to the stack.
- the application limits the level and order of page opening or rewinding, and makes the page advance or rewind jump ordering, and solves the problem that the APP memory usage is too high when the open page is too much, causing the APP to crash. It also enhances the user experience of using the web browsing plugin.
- FIG. 1 is a flowchart of a page jump method according to an embodiment of the present application.
- FIG. 2 is a schematic structural diagram of tree path information according to an embodiment of the present application.
- FIG. 3 is another flowchart of a page jump method according to an embodiment of the present application.
- FIG. 4 is a schematic structural diagram of a device where a page jump and a fallback device is provided according to an embodiment of the present application
- FIG. 5 is a schematic structural diagram of a page jump apparatus according to an embodiment of the present application.
- FIG. 6 is a schematic structural diagram of a page back-off device according to an embodiment of the present application.
- first, second, third, etc. may be used to describe various information in this application, such information should not be limited to these terms. These terms are only used to distinguish the same type of information from each other.
- first information may also be referred to as the second information without departing from the scope of the present application.
- second information may also be referred to as the first information.
- word "if” as used herein may be interpreted as "when” or “when” or “in response to a determination.”
- FIG. 1 is a flowchart of a page jump method according to an embodiment of the present application; the method is applied to an application (APP, Application) client, where the APP may be a web browser or a tape
- the APP web browsing function can be implemented by a browser plug-in (for example, a plug-in supporting html5), and the APP client is associated with tree path information.
- the tree path information may be stored in the client device or may be stored in the cloud. This embodiment is not limited.
- the structure of the tree path information is shown in FIG. 2 .
- the method includes:
- Step 101 Determine, when the current page needs to jump to the target page, a jump target path that jumps to the target page;
- the browsing function module on the APP obtains the jump target path to be jumped to the new page, and the specific acquisition method thereof It is a known technique for those skilled in the art, and details are not described herein again.
- a webview component can be embedded in the APP to support html5 page browsing.
- Step 102 Acquire all the jump legal paths of the current page jump based on the tree path information.
- All of the legal path information of the jump can be represented by a list or the like, which is not limited in this embodiment.
- a way to obtain all the legal paths of the jump is: querying the tree path information through the bridged application interface (jsbridge api), and obtaining all the jump legal paths of the current page jump.
- jsbridge api is well known to the skilled person, that is, the javascript application programming interface exposed by the client through bridging.
- the tree path information includes different levels of pages and a jump path between the pages.
- the page includes: a home page, a plurality of service level one pages, a plurality of service level two pages, ... a plurality of business N level pages, wherein N is a natural number and is the same as the number of layers of the page cache, and the different levels of the page are You can jump to each other through paths, and the home page can jump to and from all other levels of pages. That is to say, the home page is the root node, the service level page is the child node of the root node, the service secondary page is the child node of the service level page, and so on.
- the structure of the tree path information is to organize the jump situation of the page into a tree structure.
- the following is an example of a simple 4-layer tree path diagram, as shown in Figure 2.
- the first layer includes: APP home page;
- the second layer includes: service level page 1, service level page 2 and service level page 3;
- the third layer includes: the service secondary page 11 and the service secondary page 12 under the service level page 1 , the service secondary page 21 and the service secondary page 22 under the service level page 2, and the service level page 3 Business secondary page 31 and business secondary page 32;
- the fourth layer includes: a service level three page 211 under the service secondary page 21, and a service level three page 221 under the service secondary page path 22.
- Each node in the figure represents a page.
- the solid arrow represents the path of the page jump forward direction.
- the "forward direction” refers to the path that jumps from the root node to the leaf node (for example, from the service level page 1 to the service secondary page 11, etc.).
- the dotted arrow represents the path of the page jump backward direction.
- the "backward direction” refers to the path that jumps from the leaf node to the root node (for example, it can be rolled back from the service secondary page 21 to the service level page 2, etc.).
- FIG. 2 is only a schematic diagram. In practical applications, the tree diagram in the service may be simpler or more complicated, and the embodiment does not limit.
- the tree path structure shown in FIG. 2 is converted into a data structure that can be stored, and the node of the tree structure is used as a storage unit, and the forward path and the backward path of each node are respectively stored.
- the actual storage can be stored in a json format (a lightweight data exchange format), an extended markup language (xml, eXtensible Markup Language) format, or a relational data table.
- json format a lightweight data exchange format
- a relational data table a relational data table.
- the following uses the json format as an example to illustrate the storage mechanism of the "APP home page", "service level page path 1", and three nodes shown in FIG. 2:
- Type one level
- each page node has three basic attributes: type, from, to, where type is used to indicate the level of the node; from is used to indicate the back path of the node, corresponding to the "from The dashed arrow pointed by the node" (ie which node the node can be returned to, from if it is not present); to is used to indicate the forward path of the node, corresponding to the "solid arrow pointed out from the node” in Figure 2. (ie which nodes the node can advance to, to is empty if it does not exist).
- Converting the tree path structure into a storable structure in the above steps is stored in the mobile APP client.
- Step 103 Determine whether the jump destination path exists in the jump legal path, if yes, go to step 104; otherwise, go to step 105;
- Step 104 Cache the page content of the current page into the stack, and jump from the current page to the target page by using the jump target path;
- Step 105 An error is indicated.
- this step it is determined whether all the jumped legal paths obtained from the local include the determined jump target path, and if included, the current page is placed in the page path cache stack of the page, and then jumps directly according to the jump target path. Go to the target page. If not included, the user is prompted to jump to the error message.
- the application limits the level and order of page opening, and makes the page forward jump ordering, and solves the problem that the APP memory usage is too high when the open page is too much, causing the APP to crash.
- the solution of the present application can be effectively applied to a browser plug-in of a browser or other APP (for example, a plug-in supporting html5).
- the embodiment may further include:
- the page By controlling the path of opening a page, limiting the level and order of page rollback, the page is backed up and sequenced, and solves the problem that the APP memory is too high when the number of open pages is too large, causing the APP to crash.
- Effectively applied to browser plugins for browsers or other apps (such as plugins that support html5).
- FIG. 3 is a flowchart of a method for page rollback according to an embodiment of the present application.
- the method is applied to an application APP client, where the APP client is associated with tree path information;
- the structure of the path information is shown in Figure 2.
- the tree path information can be stored locally on the client device or in the cloud. This example is not limited. For details, please refer to the above, and no further details are provided here.
- the method includes:
- Step 301 When the current page needs to be rolled back to the history page, determine a cache page corresponding to the top cache content in the stack, and further determine a fallback target path that jumps to the cache page.
- the page “rollback” is not for a specific target page, but for the history page of the current page, that is, jump to the "previous" page of the current page, according to the previous implementation
- the "previous" page is cached to the top of the stack. Then, according to the embodiment, on the current page When it is necessary to fall back to the history page, first determine the cache page corresponding to the top cache content in the stack, and further determine the rollback target path to jump to the cache page.
- Step 302 Acquire all the fallback legal paths of the current page based on the tree path information.
- the information of all the fallback legal path information may be identified by using a list. Of course, other forms may be used.
- a way to obtain all the fallback legal paths is to query the tree path information through the jsbridge api, and obtain all the fallback legal paths of the current page jump.
- Step 303 Determine whether the target fallback path exists in the fallback legal path, if yes, go to step 304; otherwise, go to step 305;
- Step 304 Fall back to the history page by using the target backoff path, and unstack the cached page;
- Step 305 Fall back to the page corresponding to the legal fallback path.
- the legal path of the rollback of the page can be found through the jsbridge api (ie, The page corresponding to the from attribute), and then determining whether the jump path of the page corresponding to the top of the stack stack (ie, the rollback target path) is in the fallback legal path, and if so, passing the target fallback path Fall back to the history page and pop the cached page. Otherwise, it rolls back to the page corresponding to a legal fallback path.
- the application limits the level and order of page rollback, and makes the page rollback jump ordering, and solves the problem that the APP memory usage is too high when the html5 page is too much, causing the APP to crash.
- the solution of the present application can be effectively applied to a browser plug-in of a browser or other APP (for example, a plug-in supporting html5).
- the present application also provides an embodiment of a page jump device and/or a page fallback device.
- Embodiments of the page jump device and/or page fallback device provided by the present application can be applied to a device.
- the device embodiment may be implemented by software, or may be implemented by hardware or a combination of hardware and software.
- a hardware structure diagram of a computer program instruction in a non-volatile memory is read into a device in a memory by a processor of a device in which it is located, except FIG. 4
- the device in which the device is located in the embodiment is usually in accordance with the actual function of the device, and may also include other hardware, and details are not described herein.
- FIG. 5 is a schematic structural diagram of a page jump device according to an embodiment of the present disclosure.
- An APP client is installed on the device, and the APP client is associated with tree path information.
- the device includes: a certain a unit 51, a first obtaining unit 52, a first determining unit 53 and a jump unit 54, wherein
- the first determining unit 51 is configured to determine a jump target path that jumps to the target page when the current page needs to jump to the target page;
- the first obtaining unit 52 is configured to acquire all the jump legal paths of the current page jump based on the tree path information
- the determining unit 53 is configured to determine whether the jump target path exists in the jump legal path
- the jump unit 54 is configured to: when the first determining unit determines that the jump target path exists in the jump legal path, cache the page content of the current page to the top of the stack, and pass the The jump target path jumps from the current page to the target page.
- the first obtaining unit 52 is configured to query the tree path information by using a bridging application interface (jsbridge api) to obtain all the hops of the current page jump. Transfer the legal path.
- a bridging application interface jsbridge api
- the tree path information includes: a page of different levels and a jump path between the pages, where the page includes: a home page, multiple service level pages, multiple service level two pages, ... A plurality of service N-level pages, where N is a natural number and is the same as the number of layers of the page cache, and pages of different levels jump through each other through the path, and the first page and all other levels of pages jump through the path.
- N is a natural number and is the same as the number of layers of the page cache
- the apparatus may further include: a second acquiring unit, a third acquiring unit, a second determining unit, and a backing unit (not shown), where
- a second obtaining unit configured to: when the current page needs to be rolled back to the history page, determine a cache page corresponding to the top cache content in the stack, and further determine a fallback target path that jumps to the cache page;
- a third acquiring unit configured to acquire, according to the tree path information, all back-off legal paths that the current page needs to be rolled back;
- a second determining unit configured to determine whether the target backoff path exists in the fallback legal path
- a rollback unit configured to roll back to the history page by using the target backoff path, and pop back the cached page.
- FIG. 6 is a schematic structural diagram of a page back-off device according to an embodiment of the present disclosure.
- the device is installed with an APP client, and the APP client is associated with tree path information.
- the device includes: acquiring Unit 61, determining unit 62, determining unit 63 and backing unit 64, wherein
- the obtaining unit 61 is configured to determine, when the current page needs to be rolled back to the history page, a cache page corresponding to the top cache content in the stack, and further determine a fallback target path that jumps to the cache page;
- a determining unit 62 configured to acquire all the fallback legal paths of the current page based on the tree path information
- the determining unit 63 is configured to determine whether the target back-off path exists in the fallback legal path
- the fallback unit 64 is configured to, when the determining unit determines whether the target backoff path exists in the fallback legal path, roll back to the history page by using the target backoff path, and cache the cache The page is unstacked.
- the obtaining unit 62 is configured to query the tree path information by using a bridging application interface (jsbridge api) to obtain all the fallback laws of the current page jump. path.
- a bridging application interface jsbridge api
- the tree path information is described in detail above, and is not described here.
- the solution of the present application can be effectively applied to a browser plug-in of a browser or other APP (for example, a plug-in supporting html5), by opening a html5 path by planning a webview, limiting the level and order of opening the html5 page, and making the html5 page advance and backward jump order. And solve the problem of APP crash when opening too many html5 pages.
- a browser plug-in of a browser or other APP for example, a plug-in supporting html5
- the page advances and retreats completely in order, no longer relies on relatively random user operations, and additionally controls the level of the page stack, and solves the problem of too many pages in the stack, thereby improving html5.
- the user experience of the plugin When the user enters the html5 page of the active APP through other APPs, clicking the back button will return to the page we want the user to stay, thereby effectively increasing the user's attention to the active page.
- the device embodiment since it basically corresponds to the method embodiment, reference may be made to the partial description of the method embodiment.
- the device embodiments described above are merely illustrative, wherein the units described as separate components may or may not be physically separate, and the components displayed as units may or may not be physical units, ie may be located A place, or it can be distributed to multiple network units. Some or all of the modules may be selected according to actual needs to achieve the objectives of the present application. Those of ordinary skill in the art can understand and implement without any creative effort.
Landscapes
- Engineering & Computer Science (AREA)
- Theoretical Computer Science (AREA)
- Data Mining & Analysis (AREA)
- Databases & Information Systems (AREA)
- Physics & Mathematics (AREA)
- General Engineering & Computer Science (AREA)
- General Physics & Mathematics (AREA)
- Information Transfer Between Computers (AREA)
Abstract
Description
Claims (12)
- 一种页面跳转方法,其特征在于,所述方法应用于应用程序客户端,所述应用程序客户端关联有树形路径信息;所述方法包括:在当前页面需要跳转到目标页面时,确定跳转到所述目标页面的跳转目标路径;基于所述树形路径信息获取所述当前页面跳转的所有跳转合法路径;判断所述跳转目标路径是否存在于所述跳转合法路径中;如果存在,则将当前页面的页面内容缓存到堆栈的栈顶,并通过所述跳转目标路径从所述当前页面跳转到所述目标页面。
- 根据权利要求1所述的方法,其特征在于,所述基于所述树形路径信息获取所述当前页面跳转的所有跳转合法路径,包括:通过桥接方式的应用接口查询所述树形路径信息,得到所述当前页面跳转的所有跳转合法路径。
- 根据权利要求2所述的方法,其特征在于,所述树形路径信息中包括:不同级别的页面以及页面之间的跳转路径,其中页面包括:首页,多个业务一级页面,多个业务二级页面,……多个业务N级页面,其中,N为自然数且与页面缓存的层数相同,不同级别的页面之间通过路径相互跳转,首页与所有其他级别的页面通过路径相互跳转。
- 根据权利要求1至3任一项所述的方法,其特征在于,还包括:在当前页面需要回退到历史页面时,确定堆栈中栈顶缓存内容所对应的缓存页面,并进一步确定跳转到所述缓存页面的回退目标路径;基于所述树形路径信息获取所述当前页面的所有回退合法路径;判断所述目标回退路径是否存于在所述回退合法路径中;如果存在,通过所述目标回退路径回退到所述历史页面,并将所述缓存页面退栈。
- 一种页面回退方法,其特征在于,所述方法应用于应用程序客户端,所述应用程序客户端关联有树形路径信息;所述方法包括:在当前页面需要回退到历史页面时,确定堆栈中栈顶缓存内容所对应的缓存页面,并进一步确定跳转到所述缓存页面的回退目标路径;基于所述树形路径信息获取所述当前页面的所有回退合法路径;判断所述目标回退路径是否存于在所述回退合法路径中;如果存在,通过所述目标回退路径回退到所述历史页面,并将所述缓存页面退栈。
- 根据权利要求5所述的方法,其特征在于,所述基于所述树形路径信息获取所 述当前页面的所有回退合法路径,包括:通过桥接方式的应用接口查询所述树形路径信息,得到所述当前页面的所有回退合法路径。
- 根据权利要求6所述的方法,其特征在于,所述树形路径信息中包括:不同级别的页面以及页面之间的跳转路径,其中页面包括:首页,多个业务一级页面,多个业务二级页面,……多个业务N级页面,其中,N为自然数且与页面缓存的层数相同,不同级别的页面之间通过路径相互跳转,首页与所有其他级别的页面通过路径相互跳转。
- 一种页面跳转装置,其特征在于,所述装置上安装有应用程序客户端,所述应用程序客户端关联有树形路径信息;所述装置包括:第一确定单元,用于在当前页面需要跳转到目标页面时,确定跳转到所述目标页面的跳转目标路径;第一获取单元,用于基于所述树形路径信息获取所述当前页面跳转的所有跳转合法路径;第一判断单元,用于判断所述跳转目标路径是否存在于所述跳转合法路径中;跳转单元,用于在所述第一判断单元判断所述跳转目标路径存在于所述跳转合法路径中时,则将当前页面的页面内容缓存到堆栈的栈顶,并通过所述跳转目标路径从所述当前页面跳转到所述目标页面。
- 根据权利要求8所述的装置,其特征在于,所述第一获取单元,具体用于通过桥接方式的应用接口查询所述树形路径信息,得到所述当前页面跳转的所有跳转合法路径。
- 根据权利要求8或9所述的装置,其特征在于,还包括:第二获取单元,用于在当前页面需要回退到历史页面时,确定堆栈中栈顶缓存内容所对应的缓存页面,并进一步确定跳转到所述缓存页面的回退目标路径;第三获取单元,用于基于所述树形路径信息获取所述当前页面的所有回退合法路径;第二判断单元,用于判断所述目标回退路径是否存于在所述回退合法路径中;回退单元,用于通过所述目标回退路径回退到所述历史页面,并将所述缓存页面退栈。
- 一种页面回退装置,其特征在于,所述装置安装有应用程序APP客户端,所述应用程序客户端关联有树形路径信息;所述装置包括:获取单元,用于在当前页面需要回退到历史页面时,确定堆栈中栈顶缓存内容所对应的缓存页面,并进一步确定跳转到所述缓存页面的回退目标路径;确定单元,用于基于所述树形路径信息获取所述当前页面的所有回退合法路径;判断单元,用于判断所述目标回退路径是否存于在所述回退合法路径中;回退单元,用于在判断单元判断所述目标回退路径是否存于在所述回退合法路径中时,通过所述目标回退路径回退到所述历史页面,并将所述缓存页面退栈。
- 根据权利要求11所述的装置,其特征在于,所述获取单元,具体用于通过桥接方式的应用接口查询所述树形路径信息,得到所述当前页面的所有回退合法路径。
Priority Applications (3)
Application Number | Priority Date | Filing Date | Title |
---|---|---|---|
JP2018550370A JP6788027B2 (ja) | 2016-03-25 | 2017-03-15 | ページの間においてジャンプする方法及び装置 |
EP17769349.6A EP3422213A4 (en) | 2016-03-25 | 2017-03-15 | METHOD AND DEVICE FOR JUMPING BETWEEN SIDES |
US16/139,183 US11100187B2 (en) | 2016-03-25 | 2018-09-24 | Method and device for jumping between pages |
Applications Claiming Priority (4)
Application Number | Priority Date | Filing Date | Title |
---|---|---|---|
CN201610179092 | 2016-03-25 | ||
CN201610179092.3 | 2016-03-25 | ||
CN201610797158.5A CN107229665B (zh) | 2016-03-25 | 2016-08-31 | 一种页面跳转方法及装置 |
CN201610797158.5 | 2016-08-31 |
Related Child Applications (1)
Application Number | Title | Priority Date | Filing Date |
---|---|---|---|
US16/139,183 Continuation US11100187B2 (en) | 2016-03-25 | 2018-09-24 | Method and device for jumping between pages |
Publications (1)
Publication Number | Publication Date |
---|---|
WO2017162072A1 true WO2017162072A1 (zh) | 2017-09-28 |
Family
ID=59899314
Family Applications (1)
Application Number | Title | Priority Date | Filing Date |
---|---|---|---|
PCT/CN2017/076698 WO2017162072A1 (zh) | 2016-03-25 | 2017-03-15 | 一种页面跳转方法及装置 |
Country Status (1)
Country | Link |
---|---|
WO (1) | WO2017162072A1 (zh) |
Cited By (13)
Publication number | Priority date | Publication date | Assignee | Title |
---|---|---|---|---|
CN109460264A (zh) * | 2018-09-26 | 2019-03-12 | 深圳壹账通智能科技有限公司 | 应用程序中h5页面的获取方法、装置和计算机设备 |
CN110147184A (zh) * | 2018-02-13 | 2019-08-20 | 北京京东尚科信息技术有限公司 | 导航回退的方法和控件 |
CN110263273A (zh) * | 2019-05-21 | 2019-09-20 | 深圳壹账通智能科技有限公司 | 页面回退方法及相关装置 |
CN110765375A (zh) * | 2019-10-22 | 2020-02-07 | 普信恒业科技发展(北京)有限公司 | 一种页面跳转方法、装置及系统 |
CN111506839A (zh) * | 2020-04-17 | 2020-08-07 | 咪咕文化科技有限公司 | 数据统计方法、装置、页面服务器及统计服务器 |
CN111881400A (zh) * | 2020-07-31 | 2020-11-03 | 中国农业银行股份有限公司 | 网页跳转路径确定方法及装置 |
CN112799765A (zh) * | 2021-01-30 | 2021-05-14 | 交通银行股份有限公司 | 一种基于页面编码的智能跳转方法、设备及存储介质 |
CN113098859A (zh) * | 2021-03-30 | 2021-07-09 | 深圳市欢太科技有限公司 | 网页页面回退方法、装置、终端及存储介质 |
CN114036428A (zh) * | 2021-11-26 | 2022-02-11 | 重庆允成互联网科技有限公司 | 一种浏览器回退控制方法、系统、设备及存储介质 |
CN114036431A (zh) * | 2021-12-13 | 2022-02-11 | 中国农业银行股份有限公司 | 页面缓存跳转方法、装置、电子设备及存储介质 |
CN114553477A (zh) * | 2022-01-12 | 2022-05-27 | 青岛海尔科技有限公司 | 页面跳转方法、装置、设备和存储介质 |
CN114780800A (zh) * | 2022-04-25 | 2022-07-22 | 京东城市(北京)数字科技有限公司 | 一种多链路路由管理方法和装置 |
CN114816637A (zh) * | 2022-04-27 | 2022-07-29 | 瀚云科技有限公司 | 一种嵌入小程序上的应用显示方法、装置及系统 |
Citations (5)
Publication number | Priority date | Publication date | Assignee | Title |
---|---|---|---|---|
EP1517252A1 (en) * | 2003-09-19 | 2005-03-23 | Ricoh Company, Ltd. | Apparatus and method for rewriting selectively the URLs contained in a web page |
CN103105994A (zh) * | 2011-11-11 | 2013-05-15 | 希姆通信息技术(上海)有限公司 | 移动终端和移动终端页面的返回方法 |
CN103500204A (zh) * | 2013-09-27 | 2014-01-08 | 北京京东尚科信息技术有限公司 | 一种网页浏览回退方法、网页服务器和客户端 |
CN104156232A (zh) * | 2014-07-18 | 2014-11-19 | 百度在线网络技术(北京)有限公司 | 在线性页面结构下用于页面非线性跳转的方法和设备 |
CN104182408A (zh) * | 2013-05-23 | 2014-12-03 | 腾讯科技(深圳)有限公司 | 一种网页离线访问方法及装置 |
-
2017
- 2017-03-15 WO PCT/CN2017/076698 patent/WO2017162072A1/zh active Application Filing
Patent Citations (5)
Publication number | Priority date | Publication date | Assignee | Title |
---|---|---|---|---|
EP1517252A1 (en) * | 2003-09-19 | 2005-03-23 | Ricoh Company, Ltd. | Apparatus and method for rewriting selectively the URLs contained in a web page |
CN103105994A (zh) * | 2011-11-11 | 2013-05-15 | 希姆通信息技术(上海)有限公司 | 移动终端和移动终端页面的返回方法 |
CN104182408A (zh) * | 2013-05-23 | 2014-12-03 | 腾讯科技(深圳)有限公司 | 一种网页离线访问方法及装置 |
CN103500204A (zh) * | 2013-09-27 | 2014-01-08 | 北京京东尚科信息技术有限公司 | 一种网页浏览回退方法、网页服务器和客户端 |
CN104156232A (zh) * | 2014-07-18 | 2014-11-19 | 百度在线网络技术(北京)有限公司 | 在线性页面结构下用于页面非线性跳转的方法和设备 |
Non-Patent Citations (1)
Title |
---|
See also references of EP3422213A4 * |
Cited By (20)
Publication number | Priority date | Publication date | Assignee | Title |
---|---|---|---|---|
CN110147184A (zh) * | 2018-02-13 | 2019-08-20 | 北京京东尚科信息技术有限公司 | 导航回退的方法和控件 |
CN110147184B (zh) * | 2018-02-13 | 2023-01-31 | 北京京东尚科信息技术有限公司 | 导航回退的方法和控件 |
CN109460264A (zh) * | 2018-09-26 | 2019-03-12 | 深圳壹账通智能科技有限公司 | 应用程序中h5页面的获取方法、装置和计算机设备 |
CN110263273A (zh) * | 2019-05-21 | 2019-09-20 | 深圳壹账通智能科技有限公司 | 页面回退方法及相关装置 |
CN110765375B (zh) * | 2019-10-22 | 2022-08-02 | 普信恒业科技发展(北京)有限公司 | 一种页面跳转方法、装置及系统 |
CN110765375A (zh) * | 2019-10-22 | 2020-02-07 | 普信恒业科技发展(北京)有限公司 | 一种页面跳转方法、装置及系统 |
CN111506839A (zh) * | 2020-04-17 | 2020-08-07 | 咪咕文化科技有限公司 | 数据统计方法、装置、页面服务器及统计服务器 |
CN111506839B (zh) * | 2020-04-17 | 2023-07-21 | 咪咕文化科技有限公司 | 数据统计方法、装置、页面服务器及统计服务器 |
CN111881400A (zh) * | 2020-07-31 | 2020-11-03 | 中国农业银行股份有限公司 | 网页跳转路径确定方法及装置 |
CN111881400B (zh) * | 2020-07-31 | 2024-02-23 | 中国农业银行股份有限公司 | 网页跳转路径确定方法及装置 |
CN112799765B (zh) * | 2021-01-30 | 2022-10-11 | 交通银行股份有限公司 | 一种基于页面编码的智能跳转方法、设备及存储介质 |
CN112799765A (zh) * | 2021-01-30 | 2021-05-14 | 交通银行股份有限公司 | 一种基于页面编码的智能跳转方法、设备及存储介质 |
CN113098859A (zh) * | 2021-03-30 | 2021-07-09 | 深圳市欢太科技有限公司 | 网页页面回退方法、装置、终端及存储介质 |
CN114036428A (zh) * | 2021-11-26 | 2022-02-11 | 重庆允成互联网科技有限公司 | 一种浏览器回退控制方法、系统、设备及存储介质 |
CN114036431A (zh) * | 2021-12-13 | 2022-02-11 | 中国农业银行股份有限公司 | 页面缓存跳转方法、装置、电子设备及存储介质 |
CN114553477A (zh) * | 2022-01-12 | 2022-05-27 | 青岛海尔科技有限公司 | 页面跳转方法、装置、设备和存储介质 |
CN114553477B (zh) * | 2022-01-12 | 2024-03-22 | 青岛海尔科技有限公司 | 页面跳转方法、装置、设备和存储介质 |
CN114780800A (zh) * | 2022-04-25 | 2022-07-22 | 京东城市(北京)数字科技有限公司 | 一种多链路路由管理方法和装置 |
CN114816637A (zh) * | 2022-04-27 | 2022-07-29 | 瀚云科技有限公司 | 一种嵌入小程序上的应用显示方法、装置及系统 |
CN114816637B (zh) * | 2022-04-27 | 2024-03-01 | 瀚云科技有限公司 | 一种嵌入小程序上的应用显示方法、装置及系统 |
Similar Documents
Publication | Publication Date | Title |
---|---|---|
WO2017162072A1 (zh) | 一种页面跳转方法及装置 | |
TW201737071A (zh) | 頁面跳轉方法及裝置 | |
US9830345B1 (en) | Content-addressable data storage | |
US9274683B2 (en) | Interactive answer boxes for user search queries | |
US10068028B1 (en) | Deep link verification for native applications | |
US8812737B2 (en) | Context-specific unicode characters in shortened URLs | |
US20130173593A1 (en) | Breadcrumb filtering | |
WO2015014145A1 (zh) | 加快子资源加载速度的方法和装置 | |
US20150188781A1 (en) | Techniques for detecting new browser windows | |
WO2014036054A1 (en) | Graph query logic | |
US20200174969A1 (en) | Value-based differential data | |
US20120150988A1 (en) | Provider-specific parsing for content retrieval | |
US20170346758A1 (en) | Systems and methods for client-side dynamic information resource activation and deactivation | |
EP3821344B1 (en) | Use of cache for content validation and error remediation | |
US11138164B1 (en) | Alter table implementation details with schema versioning | |
US10298974B2 (en) | Method and device for presenting content data from network | |
US9253244B1 (en) | Subscription based polling for resource updates | |
KR101681851B1 (ko) | 웹 브라우저 동작 방법 및 시스템 | |
US9485330B2 (en) | Web browser operation method and system | |
US20120310912A1 (en) | Crawl freshness in disaster data center | |
US20140280335A1 (en) | System and method to allow a domain name server to process a natural language query and determine context | |
US20140164354A1 (en) | Optimized query ordering for file path indexing in a content repository | |
CN106462603B (zh) | 对多个实体隐含的查询的歧义消除 | |
WO2015154270A1 (zh) | 一种信息搜索的方法以及装置 | |
CN104331445B (zh) | 一种个性化app管理平台的菜单自动加载方法 |
Legal Events
Date | Code | Title | Description |
---|---|---|---|
ENP | Entry into the national phase |
Ref document number: 2018550370 Country of ref document: JP Kind code of ref document: A |
|
WWE | Wipo information: entry into national phase |
Ref document number: 2017769349 Country of ref document: EP |
|
NENP | Non-entry into the national phase |
Ref country code: DE |
|
ENP | Entry into the national phase |
Ref document number: 2017769349 Country of ref document: EP Effective date: 20180925 |
|
121 | Ep: the epo has been informed by wipo that ep was designated in this application |
Ref document number: 17769349 Country of ref document: EP Kind code of ref document: A1 |