(3주차)
쿠키와 세션은 다른듯 보이지만, 세션도 쿠키랑 같다고 볼 수 있다.
*세션 데이터를 Mustache에서 사용하는 방법
properties에서
spring.mustache.expose-session-attributes = true
==========================================
<input type="hidden" name="userId" value="{{userId}}"/>
이렇게 하면 개인정보 수정에서 회원아이디는 보이고 수정은 불가능
========================================================
html안에서 post이면서 put을 쓰는 방법
-->
<input type = "hidden" name="_method" value="put" />을 넣어준다.
*세션 데이터를 Mustache에서 사용하는 방법
properties에서
spring.mustache.expose-session-attributes = true
==========================================
<input type="hidden" name="userId" value="{{userId}}"/>
이렇게 하면 개인정보 수정에서 회원아이디는 보이고 수정은 불가능
========================================================
html안에서 post이면서 put을 쓰는 방법
-->
<input type = "hidden" name="_method" value="put" />을 넣어준다.
댓글
댓글 쓰기