redirect(3)
-
Sencha Ext.Msg.alert에서 클릭시 특정 페이지로 redirect
Ext.Msg.alert('Warning', 'Session is expired!!', function() { // Redirect to a specific page after the user clicks 'OK' window.location.href = 'https://example.com/login'; // Change the URL to your desired page});
2024.10.20 -
Spring boot Security와 sencha 연동시 고려사항
1. 'csrf' 정보를 같이 전송하지 않으면, 에러 발생함특별히 'csrf'와 관련해서 에러에 표시되는 부분이 없음# html 파일# 서버에서 csrf 정보를 가져옴 # js 파일# html의 csrf 정보를 참조하여 header에 설정함form.submit({ params: { '_csrf': document.getElementById('_csrf').innerText }, success: function(form, action) { }, failure: function(form, action) { }});2. 서버와 연동성공/실패 handler 추가 @Bean public SecurityFilterChain securityFilterChain(HttpSecurity http) throws Exce..
2024.08.03 -
자바스크립트에서 redirect 하기
sencha에서도 적용됨window.location.href = "https://www.naver.com";# referer 적용window.location.href = document.referrer;
2024.07.31