- Notifications
You must be signed in to change notification settings - Fork849
[formData] 번역#684
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to ourterms of service andprivacy statement. We’ll occasionally send you account related emails.
Already on GitHub?Sign in to your account
base:master
Are you sure you want to change the base?
[formData] 번역#684
Uh oh!
There was an error while loading.Please reload this page.
Conversation
CLAassistant commentedAug 13, 2020 • edited
Loading Uh oh!
There was an error while loading.Please reload this page.
edited
Uh oh!
There was an error while loading.Please reload this page.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others.Learn more.
모범사례 관련 코멘트 참고하여 수정 부탁드립니다.
@@ -1,26 +1,26 @@ | |||
# FormData | |||
This chapter is about sending HTML forms: with or without files, with additional fields and so on. | |||
이 챕터는 파일 유무, 추가 필드 등 HTML 폼(form) 전송에 관한 것입니다. |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others.Learn more.
누락된 내용이 있습니다.
[FormData](https://xhr.spec.whatwg.org/#interface-formdata)objects can help with that. As you might have guessed, it's the object to represent HTML form data. | ||
짐작하셨듯이,[FormData](https://xhr.spec.whatwg.org/#interface-formdata)오브젝트는 HTML 폼(form) 데이터를 나타내는 것이 목적이고, 이것을 지원할 수 있습니다. |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others.Learn more.
object에관한 번역은 용어집을 확인해주세요.
[FormData](https://xhr.spec.whatwg.org/#interface-formdata)objects can help with that. As you might have guessed, it's the object to represent HTML form data. | ||
짐작하셨듯이,[FormData](https://xhr.spec.whatwg.org/#interface-formdata)오브젝트는 HTML 폼(form) 데이터를 나타내는 것이 목적이고, 이것을 지원할 수 있습니다. |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others.Learn more.
```js | ||
let formData = new FormData([form]); | ||
``` | ||
IfHTML `form`element is provided, it automatically captures its fields. | ||
HTML `form`요소가 제공되면, 자동으로 필드를 캡처합니다. |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others.Learn more.
The special thing about`FormData`is that network methods, such as`fetch`, can accept a `FormData` object as a body. It's encoded and sent out with`Content-Type: multipart/form-data`. | ||
`FormData`의 특별한 점은,`fetch` 와 같은 네트워크 메서드이고, 대상을 하나의 본문과 같이 `FormData` 객체로 받아들일 수 있다는 점입니다. 이것은`Content-Type: multipart/form-data` 로 인코딩되어 전송됩니다. |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others.Learn more.
쉼표 관련 모범사례 참고. 아래 쪽 내용부터 쉼표 관련해선 코멘트 달지 않겠습니다.
javascript-translate-bot commentedAug 22, 2020
Please make the requested changes. After it, add a comment "/done". |
Pull Request 체크리스트
TODO