diff --git a/5-network/02-formdata/article.md b/5-network/02-formdata/article.md index d281d07561..a035815917 100644 --- a/5-network/02-formdata/article.md +++ b/5-network/02-formdata/article.md @@ -54,7 +54,7 @@ In this example, the server code is not presented, as it's beyound our scope. Th We can modify fields in `FormData` with methods: - `formData.append(name, value)` - add a form field with the given `name` and `value`, -- `formData.append(name, blob, fileName)` - add a field as if it were ``, the third argument `fileName` sets file name (not form field name), as it were a name of the file in user's filesystem, +- `formData.append(name, blob, fileName)` - ``ÇüÅÂÀÇ Çʵ带 Ãß°¡. ¼¼ ¹øÂ° Àμö `fileName`Àº (Çʵå À̸§ÀÌ ¾Æ´Ï°í) »ç¿ëÀÚ°¡ ÇØ´ç À̸§À» °¡Áø ÆÄÀÏÀ» Æû¿¡ Ãß°¡ÇÑ °Íó·³ ¼³Á¤ÇØÁÜ - `formData.delete(name)` - remove the field with the given `name`, - `formData.get(name)` - get the value of the field with the given `name`, - `formData.has(name)` - if there exists a field with the given `name`, returns `true`, otherwise `false`