hmu332233 / tips

https://tips.minung.dev
1 stars 0 forks source link

form #19

Open hmu332233 opened 3 years ago

hmu332233 commented 3 years ago

Search Keyword form, object

hmu332233 commented 2 years ago

form 외부에서 submit

id와 form 키워드를 사용하는 방법

<form id="my-form" onSubmit={handleSubmit}>
    {/* awesome form */}
</form>

<button type="submit" form="my-form">Submit</button>
hmu332233 commented 2 years ago

submit을 통해 form으로부터 받은 데이터 object로 받기

handleSumbit(e) {
  const formData = new FormData(e.target);
  // Object.fromEntries(formData); json object로 변환
}