Skip to content

archives 扩展参数表

字段名字段类型字段注释默认值可空备注
idint UNSIGNED主键 IDNO自动递增
app_fskeyvarchar(64)关联插件NO关联字段 apps->fskey
哪个插件创建的
namejson名称YES多语言
descriptionjson介绍YES多语言
codevarchar(32)代码NO唯一值,纯英文字母,不支持任何符号或空格
usage_typetinyint UNSIGNED用途类型NO内容类型编号
usage_group_idint UNSIGNED用途是小组内容专用时使用0NO关联字段 groups->id
配合 postcomment 使用
form_typevarchar(16)表单元素NO
form_optionsjson选项类型配置值YES多语言
数组格式,为 select,checkbox,radio 等类型提供选项值
is_tree_optiontinyint UNSIGNED是否树结构选项0NO0.否 / 1.是
is_multipletinyint UNSIGNED是否多选0NO0.否 / 1.是 对 select 元素有效
is_requiredtinyint UNSIGNED是否必填0NO0.否 / 1.是
file_typetinyint UNSIGNED文件类型YESform_type=file 1.图片 / 2.视频 / 3.音频 / 4.文档
input_patternvarchar(128)自定义正则表达式YES
input_maxsmallint UNSIGNED最大值YES
input_minsmallint UNSIGNED最小值YES
input_maxlengthsmallint UNSIGNED最大长度YES
input_minlengthsmallint UNSIGNED最小长度YES
sort_ordersmallint UNSIGNED排列顺序9NO升序排序
is_enabledtinyint UNSIGNED是否有效1NO0.无效 / 1.有效
无效后,所有关联均无效
created_attimestamp创建时间useCurrentNO比如 MySQL 默认值为 CURRENT_TIMESTAMP
updated_attimestamp更新时间YES
deleted_attimestamp删除时间YES

form_type 字段介绍

form_typeHTML Code描述
input<input type="text">单行文本域
textarea<textarea></textarea>多行文本域
select<select></select>下拉选项
radio<input type="radio">单选按钮
checkbox<input type="checkbox">多选复选框
color<input type="color">颜色选择器
time<input type="time">时间选择器
date<input type="date">日期选择器
month<input type="month">年月选择器
datetime<input type="datetime-local">日期时间选择器
number<input type="number">数字输入框
email<input type="email">邮箱输入框
url<input type="url">网址输入框
file<input type="file">单个文件上传
tags<input type="text">标签输入框,格式 ["tag", "tag"]

form_options 字段介绍

json
{
    "语言标签": [
        {"name": "IT", "value": 1, "options": [
            {"name": "互联网", "value": 11, "options": []}
        ]},
        {"name": "制造", "value": 2, "options": []},
        {"name": "医疗", "value": 3, "options": []},
        {"name": "金融", "value": 4, "options": []},
        {"name": "商业", "value": 5, "options": []},
        {"name": "文化", "value": 6, "options": []},
        {"name": "艺术", "value": 7, "options": []},
        {"name": "法律", "value": 8, "options": []},
        {"name": "教育", "value": 9, "options": []},
        {"name": "行政", "value": 10, "options": []}
    ]
}

Released under the Apache-2.0 License