前言
图像设置。
基本信息
- 英文名称:
Image Control - 中文名称:图像控件
- Schema ID:
bricks://controls/image - Schema 版本:
2.3 - 类型:
object
属性
id(["string", "integer"])filename(string)url(string)size(string)full(string)useDynamicData(string)
Schema 定义
完整 JSON 定义
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"$id": "bricks://controls/image",
"schemaVersion": "2.3",
"title": "Image Control",
"description": "Image settings",
"controlProperties": [
"type",
"hasRequired",
"label",
"tab",
"group"
],
"type": "object",
"properties": {
"id": {
"type": [
"string",
"integer"
]
},
"filename": {
"type": "string"
},
"url": {
"type": "string"
},
"size": {
"type": "string"
},
"full": {
"type": "string"
},
"useDynamicData": {
"type": "string"
}
},
"titleZh": "图像控件",
"descriptionZh": "图像设置。"
}
补充说明
更多细节可参考 Bricks 官方 Academy 文档。