From 378de021dbd63114026764c011af2044782b6f0d Mon Sep 17 00:00:00 2001 From: CJR Date: Wed, 23 Mar 2022 19:45:05 +0900 Subject: [PATCH] =?UTF-8?q?[FormData]=20=EB=B2=88=EC=97=AD=20-=20line178(#?= =?UTF-8?q?1232)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- 5-network/02-formdata/article.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/5-network/02-formdata/article.md b/5-network/02-formdata/article.md index d281d07561..16f2828a2a 100644 --- a/5-network/02-formdata/article.md +++ b/5-network/02-formdata/article.md @@ -175,7 +175,7 @@ We can either create `new FormData(form)` from an HTML form, or create a object - `formData.set(name, value)` - `formData.set(name, blob, fileName)` -Let's note two peculiarities here: +메서드를 사용할 때 주의할 점 2가지가 있습니다. 1. The `set` method removes fields with the same name, `append` doesn't. That's the only difference between them. 2. To send a file, 3-argument syntax is needed, the last argument is a file name, that normally is taken from user filesystem for ``.