Skip to content

Commit 487762e

Browse files
junhuk1113Violet-Bora-Lee
authored andcommitted
[FormData] 번역 - line57(#1232)
1 parent 47354cb commit 487762e

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
@@ -54,7 +54,7 @@ From the server point of view, that looks like a usual form submission.
5454
`FormData`에 속하는 필드는 아래와 같은 메서드로 수정할 수 있습니다.
5555

5656
- `formData.append(name, value)` - add a form field with the given `name` and `value`,
57-
- `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,
57+
- `formData.append(name, blob, fileName)` - `<input type="file">`형태의 필드를 추가. 세 번째 인수 `fileName`은 (필드 이름이 아니고) 사용자가 해당 이름을 가진 파일을 폼에 추가한 것처럼 설정해줌
5858
- `formData.delete(name)` - remove the field with the given `name`,
5959
- `formData.get(name)` - `name`에 해당하는 필드의 값을 가져옴
6060
- `formData.has(name)` - if there exists a field with the given `name`, returns `true`, otherwise `false`

0 commit comments

Comments
 (0)