支持写入的数据类型
字符串
"string"
数字
123
链接
无文本链接
"http://www.dd.com"
带文本的链接
{
"text": "文本",
"link": "http://www.dd.com",
"type": "url"
}
邮箱
"aaa@aa.com"
@人
{
"type": "mention",
"text": "aaa@aa.com",
"textType": "email",
"notify": true,
"grantReadPermission": true
}
公式
{
"type": "formula",
"text": "=A1"
}
@文档
{
"type": "mention",
"textType": "fileToken",
"text": "shtxxxx",
"objType": "sheet"
}
下拉列表
{
"type": "multipleValue",
"values": [
1,
"test"
]
}
局部样式
segmentStyle
{
"bold": true,
"italic": true,
"strikeThrough": true,
"underline": true,
"foreColor": "#ff00ff",
"fontSize": 30
}
写入带局部样式的数据
字符串
{
"text": "string",
"type": "text",
"segmentStyle": {
"bold": true,
"italic": true,
"strikeThrough": true,
"underline": true,
"foreColor": "#ff00ff",
"fontSize": 20
}
}
数字
链接
{
"text": "文本",
"link": "http://www.dd.com",
"type": "url",
"texts": [
{
"text": "文",
"segmentStyle": {
"bold": true,
"italic": true,
"strikeThrough": true,
"underline": true,
"foreColor": "#ffffff",
"fontSize": 20
}
},
{
"text": "本",
"segmentStyle": {
"bold": true,
"italic": false,
"strikeThrough": true,
"underline": true,
"foreColor": "#ffffff",
"fontSize": 10
}
}
]
}
邮箱
{
"type": "url",
"text": "aa@bytedance.com",
"texts": [
{
"text": "aa",
"segmentStyle": {
"bold": true,
"italic": true,
"strikeThrough": true,
"underline": true,
"foreColor": "#ffffff",
"fontSize": 20
}
},
{
"text": "@bytedance.com",
"segmentStyle": {
"bold": true,
"italic": false,
"strikeThrough": true,
"underline": true,
"foreColor": "#ffffff",
"fontSize": 10
}
}
]
}
@人
{
"type": "mention",
"text": "aaa@aa.com",
"textType": "email",
"notify": true,
"grantReadPermission": true
"segmentStyle": {
"bold": true,
"italic": true,
"strikeThrough": true,
"underline": true,
"foreColor": "#ff00ff",
"fontSize": 30
}
}
@文档
{
"type": "mention",
"textType": "fileToken",
"text": "shtxxxx",
"objType": "sheet",
"segmentStyle": {
"bold": true,
"italic": true,
"strikeThrough": true,
"underline": true,
"foreColor": "#ff00ff",
"fontSize": 30
}
}
下拉列表
修改于 2023-01-13 09:51:13