Jakegcee.hashnode.dev·Jul 8, 2024History API를 사용하여 뒤로가기 막기 (Next.js)사내 프로젝트에서 특정 페이지에서 뒤로가기 이벤트를 실행 시 모달을 띄우는 요구사항 구현을 정리하였습니다. History API란? MDNHistory API는 브라우저의 세션 기록(탭이나 프레임에서 현재 페이지가 로드된 기록)에 접근할 수 있는 기능을 제공합니다. 이를 통해 사용자는 뒤로 가기와 앞으로 가기, 그리고 히스토리 스택의 내용을 조작할 수 있습니다. 이 API는 메인 스레드(Window)에서만 사용할 수 있으며, Worker나 W...53 readsFeature DevelopmentNext.js
Cesar Romanblog.cesartheroman.com·Aug 2, 2023Day 3 Overview: Routing + Web ComponentsBrowser Routing & History API Single Page Applications: how to change the content The idea of a SPA, vs a multi-page app, is that we’re only using one HTML page that will render all of our content. Otherwise, we would need multiple HTML pages for eac...Working through FEM's: VanillaJS Coursevanilla-js