企业🤖AI Agent构建引擎,智能编排和调试,一键部署,支持私有化部署方案 广告
## 单行文本框 > 图片示例: ![](https://img.kancloud.cn/b9/04/b9040b4e33ea7ebb87350ca98bcf4576_1920x903.png) > 配置项 | key | 类型 | 是否必须 | 说明 | | --- | --- | --- | --- | | type | string | 否 | 固定值:`text` | | 通用配置... | | placeholder | string | 否 | 占位符 | | readonly | bool | 否 | 只读,默认false | > 字段值 返回文本框内容。 > 代码示例: ~~~ $builder=YF('general_example')->tab([ 'base'=>'基础']) ->field(function($tab){ $field=[ 'name_cn'=>[ 'title'=>'中文姓名', 'verify'=>'require|chs', 'desc'=>'只能输入汉字' ], ]; return $field; }) ~~~