mirror of
https://gitee.com/g1879/DrissionPage.git
synced 2024-12-10 04:00:23 +08:00
修复back()后退不准确的情况
This commit is contained in:
parent
cbc9367127
commit
08831e7ce8
@ -624,14 +624,14 @@ class ChromiumBase(BasePage):
|
|||||||
index = history['currentIndex']
|
index = history['currentIndex']
|
||||||
history = history['entries']
|
history = history['entries']
|
||||||
direction = 1 if steps > 0 else -1
|
direction = 1 if steps > 0 else -1
|
||||||
curr_url = history[index]['userTypedURL']
|
curr_url = history[index]['url']
|
||||||
nid = None
|
nid = None
|
||||||
for num in range(abs(steps)):
|
for num in range(abs(steps)):
|
||||||
for i in history[index::direction]:
|
for i in history[index::direction]:
|
||||||
index += direction
|
index += direction
|
||||||
if i['userTypedURL'] != curr_url:
|
if i['url'] != curr_url:
|
||||||
nid = i['id']
|
nid = i['id']
|
||||||
curr_url = i['userTypedURL']
|
curr_url = i['url']
|
||||||
break
|
break
|
||||||
|
|
||||||
if nid:
|
if nid:
|
||||||
|
Loading…
x
Reference in New Issue
Block a user