Skip to content

Commit 5d4eb0a

Browse files
maatanyyViolet-Bora-Lee
authored andcommitted
[FormData] 번역 - line59(#1232)
1 parent afb3928 commit 5d4eb0a

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

5-network/02-formdata/article.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -56,7 +56,7 @@ In this example, the server code is not presented, as it's beyound our scope. Th
5656
- `formData.append(name, value)` - add a form field with the given `name` and `value`,
5757
- `formData.append(name, blob, fileName)` - add a field as if it were `<input type="file">`, the third argument `fileName` sets file name (not form field name), as it were a name of the file in user's filesystem,
5858
- `formData.delete(name)` - remove the field with the given `name`,
59-
- `formData.get(name)` - get the value of the field with the given `name`,
59+
- `formData.get(name)` - `name`에 해당하는 필드의 값을 가져옴
6060
- `formData.has(name)` - if there exists a field with the given `name`, returns `true`, otherwise `false`
6161

6262
A form is technically allowed to have many fields with the same `name`, so multiple calls to `append` add more same-named fields.

0 commit comments

Comments
 (0)