## 富文本
> 图片示例:
![](https://img.kancloud.cn/e8/f6/e8f668db30337a4f11bc1a16c68fdf27_1920x903.png)
> 配置项
| key | 类型 | 是否必须 | 说明 |
| --- | --- | --- | --- |
| type | string | 是 | 固定值:`editor` |
| 通用配置... |
| mode | string | 否 | 模式,可选值:ckeditor(默认) |
| modeConfig | array | 否 | 模式的配置 |
| readonly | bool | 否 | 只读,默认false |
> 配置项 modeConfig
| key | 类型 | 是否必须 | 说明 |
| --- | --- | --- | --- |
| ckeditor | array | 否 | 模式ckeditor的配置 |
| ckeditor.toolbar | array | 否 | 工具栏 |
> 配置项 mode_config.ckeditor.toolbar
默认值:
```
[
'Source', '-', 'Undo', 'Redo', '-', 'Preview', '-', 'SelectAll', '-'
, 'Bold', 'Italic', 'Underline', 'Strike', '-', 'NumberedList', 'BulletedList', '-'
, 'JustifyLeft', 'JustifyCenter', 'JustifyRight', 'JustifyBlock', '-', 'BidiLtr', 'BidiRtl', '-'
, 'Link', 'Image', 'CodeSnippet', '-', 'Styles', 'Format', 'Font', 'FontSize', '-'
,'TextColor', 'BGColor', '-', 'Maximize'
]
```
说明:
| code | 描述 |
| --- | --- |
| - | 分隔符 |
| Source | 源码 |
| Undo | 撤销 |
| Redo | 重做 |
| Preview | 预览 |
| SelectAll | 全选 |
| Bold | 加粗 |
| Italic | 倾斜 |
| Underline | 下划线 |
| Strike | 删除线 |
| NumberedList | 编号列表 |
| BulletedList | 项目列表 |
| JustifyLeft | 左对齐 |
| JustifyCenter | 居中 |
| JustifyRight | 右对齐 |
| JustifyBlock | 两端对齐 |
| BidiLtr | 文字方向从左至右 |
| BidiRtl | 文字方向从右至左 |
| Link | 插入/编辑超链接 |
| Image | 图像 |
| CodeSnippet | 插入代码段 |
| Styles | 样式 |
| Format | 格式 |
| Font | 字体 |
| FontSize | 大小 |
| TextColor | 文本颜色 |
| BGColor | 背景颜色 |
| Maximize | 全屏 |
> 字段值
返回富文本内容。
> 代码示例:
~~~
$builder=YF('general_example')->tab([ 'base'=>'基础'])
->field(function($tab){
$field=[
'editor_test'=>[
'title'=>'富文本',
'type'=>'editor',
// 以下示例参数非必须
"mode"=>"ckeditor",
"modeConfig"=>[
"ckeditor"=>[
"toolbar"=>[ 'Source', '-', 'Undo', 'Redo', '-', ...]
]
],
],
];
return $field;
})
~~~
- 序言
- 基础
- 安装
- 目录结构
- 配置
- 版本
- 控制器
- 使用说明
- 视图模板
- 使用说明
- 区块重写
- seo
- headStyle
- headScript
- content
- script
- 验证器
- TP验证器
- 使用说明
- 自动处理
- 数据处理
- 前端验证器
- 概述
- 调用示例
- 通用验证规则
- 表单构建器
- 基础示例
- 初始化
- 链式操作
- tab
- url
- field
- fieldValidate
- button
- load
- submit
- 渲染输出
- 字段配置
- 使用说明
- 隐藏域(hidden)
- 文本框(text)
- 文本域(textarea)
- 密码框(password)
- 富文本(editor)
- 文档编辑(markdown)
- 下拉选框(select)
- 单选框(radio)
- 复选框(checkbox)
- 开关(switch)
- 日期(date)
- 时间日期(datetime)
- 年份(year)
- 月份(month)
- 时间(time)
- 单图(img)
- 多图(imgs)
- 单文件(file)
- 多文件(files)
- 取色器(color)
- 地区联动(area)
- 下拉搜索(dropdownSearch)
- 树(tree)
- 自定义字段
- 单一字段调用
- 概述
- 示例
- 表格构建器
- 基础示例
- 初始化
- 链式操作
- state
- url
- page
- limit
- limits
- filter
- filterValidate
- toolbar
- defaultToolbar
- import
- cols
- count
- items
- event
- 渲染输出
- 表头配置
- 使用说明
- 枚举(enum)
- 时间日期(datetime)
- 单图(img)
- 多图(imgs)
- 单文件(file)
- 多文件(files)
- 拖拽排序(dragSort)
- 颜色呈现(color)
- 地区呈现(area)
- 操作栏(action)
- 自定义表头
- JS事件
- 异步事件监听
- 导入构建器
- 基础示例
- 初始化
- 链式操作
- sheet
- cols
- colsValidate
- limit
- tips
- row
- rows
- 渲染输出
- 主题开发
- 实现步骤
- 系统主题
- 注意
- PHP公共方法库
- 配置
- yunj_config
- 构建器
- YF
- YT
- YI
- 重定向
- url_tips
- redirect_tips
- throw_redirect
- 响应输出
- response_msg
- response_json
- success_json
- error_json
- throw_json
- throw_success_json
- throw_error_json
- 数组
- array_eq
- array_in
- array_supp
- array_depth
- array_insert
- array_key_prefix
- 验证
- is_mobile
- is_positive_int
- is_positive_integer
- is_json
- is_datetime
- is_md5_result
- 时间日期
- msectime
- 字符串
- rand_char
- filter_sql
- start_with
- exception_to_str
- 数据加解密
- aes_encrypt
- aes_decrypt
- rsa_encrypt
- rsa_decrypt
- rsa_sign
- rsa_sign_verify
- JS公共方法库
- 调用说明
- 数据类型
- varType
- 判断
- isMobile
- isObj
- isEmptyObj
- isArray
- isEmptyArray
- isString
- isEmptyString
- isBool
- isNumber
- isFloat
- isFunction
- isUndefined
- isJson
- isCsv
- isXls
- isXlsx
- 字符串
- fileExt
- fileNameExt
- currTimestamp
- currDatetime
- timestampFormat
- 对象
- objSupp
- 图片
- previewImg
- url
- url
- urlParam
- urlPushParam
- 页面
- openNewPage
- openTab
- openPopup
- rawPageWin
- redirectTab
- redirectLogin
- isPopupPage
- isTabPage
- currPageId
- close
- closeCurr
- closeAll
- 网络
- request
- 数据加解密
- aesEncrypt
- aesDecrypt
- rsaEncrypt
- rsaDecrypt
- rsaSign
- rsaSignVerify
- 附录
- 升级指导
- 更新日志