히스토리 스택과의 상호 작용
12760 단어 jstriviahtmljavascript
window.history.pushState(null, null, "/temp1");
window.history.pushState(null, null, "/temp2");
window.history.pushState(null, null, "/temp3");
console.log("before go", window.history.length);
window.history.go(-3);
console.log("after go", window.history.length);
window.history.pushState(null, null, "/temp4");
console.log("after go after pushState", window.history.length);
답변(클릭하면 볼 수 있습니다)
before go 4
after go 4
after go after pushState 2
후속 질문!
window.history.pushState(null, null, "/temp1");
window.history.pushState(null, null, "/temp2");
window.history.pushState(null, null, "/temp3");
console.log("before go", window.history.length);
window.history.go(-3);
console.log("after go", window.history.length);
window.history.replaceState(null, null, "/temp4");
console.log("after go after replaceState", window.history.length);
답변(클릭하면 볼 수 있습니다)
before go 4
after go 4
after go after replaceState 4
무슨 일이야?
히스토리 스택을 통해 탐색할 수 있으며 탐색을 통해 스택을 유지합니다. 그러나 스택에 푸시하면 스택의 현재 위치에서 향후 탐색이 지워집니다.
단순화된 데모:
window.history.pushState(null, null, "/temp1");
// history.stack looks like ['', '/temp1']
// current entry is '/temp1'
window.history.pushState(null, null, "/temp2");
// history.stack looks like ['', '/temp1', '/temp2']
// current entry is '/temp2'
window.history.pushState(null, null, "/temp3");
// history.stack looks like ['', '/temp1', '/temp2', '/temp3']
// current entry is '/temp3'
console.log("before go", window.history.length);
// before go 4
window.history.go(-3);
// history.stack looks like ['', '/temp1', '/temp2', '/temp3']
// current entry is ''
console.log("after go", window.history.length);
// after go 4
window.history.pushState(null, null, "/temp4");
// history.stack looks like ['', '/temp4']
// current entry is '/temp4'
console.log("after go after pushState", window.history.length);
// after go after pushState 2
위의
pushState
호출을 replaceState
로 변경하기만 하면 다음과 같습니다.window.history.replaceState(null, null, "/temp4");
// history.stack looks like ['/temp4', '/temp1', '/temp2', '/temp3']
// current entry is '/temp4'
스펙토크
다음은 WHATWG HTML spec for history update steps 에 대한 링크입니다.
여기서 주목해야 할 핵심은 2단계입니다.
2 If isPush is true, then:
2.1 Remove all the entries in browsingContext's session history after the current entry. If the current entry is the last entry in the session history, then no entries are removed.
isPush
는 pushState
에 대해 true이고 replaceState
에 대해 false입니다. 이는 pushState에 대해 여기에서, replaceState에 대해 여기에서 찾을 수 있습니다 - 해당 문장의 마지막 단어에 주의하십시오.
Reference
이 문제에 관하여(히스토리 스택과의 상호 작용), 우리는 이곳에서 더 많은 자료를 발견하고 링크를 클릭하여 보았다 https://dev.to/frehner/the-history-stack-and-its-length-2j62텍스트를 자유롭게 공유하거나 복사할 수 있습니다.하지만 이 문서의 URL은 참조 URL로 남겨 두십시오.
우수한 개발자 콘텐츠 발견에 전념 (Collection and Share based on the CC Protocol.)