-
Notifications
You must be signed in to change notification settings - Fork 8.2k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
[add]: add index.md for web/glossary/serialization
- Loading branch information
Showing
1 changed file
with
18 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,18 @@ | ||
--- | ||
title: 직렬화 (Serialization) | ||
slug: Glossary/Serialization | ||
l10n: | ||
sourceCommit: ada5fa5ef15eadd44b549ecf906423b4a2092f34 | ||
--- | ||
|
||
{{GlossarySidebar}} | ||
|
||
객체나 데이터 구조를 네트워크나 저장소(예, 배열 버퍼 또는 파일 형식)를 통한 전송에 적합한 형식으로 변환하는 프로세스입니다. | ||
|
||
예를 들어, {{Glossary("JavaScript")}}에서는 {{Glossary("function", "함수")}} {{jsxref("JSON.stringify()")}}를 호출하는 것을 통해 객체를 {{Glossary("JSON")}} {{Glossary("string", "문자열")}}로 직렬화할 수 있습니다. | ||
|
||
{{Glossary("CSS")}} 값은 {{domxref("CSSStyleDeclaration.getPropertyValue()")}} 함수를 호출하여 직렬화됩니다. | ||
|
||
## 같이 보기 | ||
|
||
- 위키백과의 [직렬화](https://en.wikipedia.org/wiki/Serialization) |