...
| Type | Description |
|---|---|
| Object | String | Body 모델 JSON Object 또는 JSON String. |
Example:
| Code Block | ||||
|---|---|---|---|---|
| ||||
var model = editor.getBodyModelJSONForAI(); var model = editor.getBodyModelJSONgetBodyModelJSONForAI(false. true); var model = editor.getBodyModelJSONgetBodyModelJSONForAI(true); |
| Code Block | ||||||
|---|---|---|---|---|---|---|
| ||||||
{
"type": "Body",
"children": [
{
"children": [
{
"text": "안녕",
"type": "TextRun"
},
{
"text": "하세요",
"type": "TextRun"
}
],
"type": "Paragraph"
}
]
} |
| Code Block | ||||||
|---|---|---|---|---|---|---|
| ||||||
{ "type": "Body", "children": [ { "children": [ { "text": "안녕", "style": { "color": { "r": 128, "g": 128, "b": 255 } }, "type": "TextRun" }, { "text": "안녕하세요",하세요", "style": { "color": { "r": 255, "g": 128, "b": 128 } }, "type": "TextRun" } ], "type": "Paragraph" } ] } |
...
| Code Block | ||||||
|---|---|---|---|---|---|---|
| ||||||
{"type":"Body","children":[{"children":[{"text":"안녕하세요"안녕","type":"TextRun"},{"text":"하세요","type":"TextRun"}],"type":"Paragraph"}]} |
...

