강의

멘토링

커뮤니티

Inflearn Community Q&A

libraseong2732's profile image
libraseong2732

asked

Vue-Django-Bootstrap Quick Blog

Comment Generation API

코드 문의

Written on

·

238

0

"댓글 생성 API" 를 듣고 있는데요.

resetForm() {
console.log("resetForm()...");
this.$refs.commentForm.reset();
},

에서,

this.$refs.commentForm.reset()

의 코드 설명을 조금 더 상세하게 듣고 싶습니다.

부탁 드려요.

 

djangovuejsbootstrap

Answer 1

0

bestdjango님의 프로필 이미지
bestdjango
Instructor

안녕하세요. 독자님.

this.$refs.commentForm 의 의미는,

ref="~" 로 지정된 엘리먼트들 중에서 commentForm 으로 지정된 엘리먼트를 의미하므로,

<form></form> 엘리먼트를 가리키게 되고, 이 <form> 에 reset() 메소드를 호출해서,

내용을 클리어하고 있습니다.

설명이 되었는지요 ?

감사합니다.

 

libraseong2732's profile image
libraseong2732

asked

Ask a question