Skip to content
体验新版
项目
组织
正在加载...
登录
切换导航
打开侧边栏
OpenHarmony
Docs
提交
361662f9
D
Docs
项目概览
OpenHarmony
/
Docs
大约 1 年 前同步成功
通知
159
Star
292
Fork
28
代码
文件
提交
分支
Tags
贡献者
分支图
Diff
Issue
0
列表
看板
标记
里程碑
合并请求
0
Wiki
0
Wiki
分析
仓库
DevOps
项目成员
Pages
D
Docs
项目概览
项目概览
详情
发布
仓库
仓库
文件
提交
分支
标签
贡献者
分支图
比较
Issue
0
Issue
0
列表
看板
标记
里程碑
合并请求
0
合并请求
0
Pages
分析
分析
仓库分析
DevOps
Wiki
0
Wiki
成员
成员
收起侧边栏
关闭侧边栏
动态
分支图
创建新Issue
提交
Issue看板
未验证
提交
361662f9
编写于
2月 24, 2022
作者:
O
openharmony_ci
提交者:
Gitee
2月 24, 2022
浏览文件
操作
浏览文件
下载
差异文件
!1610 TextInput组件开发者文档更新
Merge pull request !1610 from Yao.inhome/heyangbo_TextInput_docs_0222
上级
5f9d4b89
4c11cfd0
变更
1
隐藏空白更改
内联
并排
Showing
1 changed file
with
17 addition
and
6 deletion
+17
-6
zh-cn/application-dev/reference/arkui-ts/ts-basic-components-textinput.md
...n-dev/reference/arkui-ts/ts-basic-components-textinput.md
+17
-6
未找到文件。
zh-cn/application-dev/reference/arkui-ts/ts-basic-components-textinput.md
浏览文件 @
361662f9
...
...
@@ -25,7 +25,7 @@ TextInput(value?:{placeholder?: string controller?: TextInputController})
| 参数名 | 参数类型 | 必填 | 默认值 | 参数描述 |
| -------- | -------- | -------- | -------- | -------- |
| placeholder | string | 否 | - | 无输入时的提示文本。 |
| controller
<sup>
8+
</sup>
|
[
TextInputController
](
#textinputcontroller
8+
)
| 否 | - | 设置TextInput控制器。 |
| controller
<sup>
8+
</sup>
|
[
TextInputController
](
#textinputcontroller
sup8sup
)
| 否 | - | 设置TextInput控制器。 |
## 属性
...
...
@@ -39,7 +39,7 @@ TextInput(value?:{placeholder?: string controller?: TextInputController})
| placeholderFont | {
<br/>
size?:
Length,
<br/>
weight?:
number\|[FontWeight](ts-universal-attributes-text-style.md),
<br/>
family?:
string,
<br/>
style?:
[
FontStyle
](
ts-universal-attributes-text-style.md
)
<br/>
} | - | 设置placeholder文本样式:
<br/>
-
size:
设置文本尺寸,Length为number类型时,使用fp单位。
<br/>
-
weight:
设置文本的字体粗细,number类型取值[100,
900],取值间隔为100,默认为400,取值越大,字体越粗。
<br/>
-
family:
设置文本的字体列表。使用多个字体,使用','进行分割,优先级按顺序生效。例如:'Arial,
sans-serif'。
<br/>
-
style:
设置文本的字体样式。 |
| enterKeyType | EnterKeyType | EnterKeyType.Done | 设置输入法回车键类型。 |
| caretColor | Color | - | 设置输入框光标颜色。 |
| maxLength
<sup>
8+
</sup>
| number | - | 设置文本的最大输入字符数。 |
| maxLength | number | - | 设置文本的最大输入字符数。 |
| inputFilter
<sup>
8+
</sup>
| {
<br/>
value:
[ResourceStr](../../ui/ts-types.md)
<sup>
8+
</sup>
,
<br/>
error?:
(value:
string)
<br/>
} | - | 正则表达式,满足表达式的输入允许显示,不满足正则表达式的输入被忽略。仅支持单个字符匹配,不支持字符串匹配。例如:^(?=.
\*\d
)(?=.
\*
[a-z])(?=.
\*
[A-Z]).{8,10}$,8到10位的强密码不支持过滤。
<br/>
-
value:设置正则表达式。
<br/>
-
error:正则匹配失败时,返回被忽略的内容。 |
-
EnterKeyType枚举说明
...
...
@@ -62,11 +62,22 @@ TextInput(value?:{placeholder?: string controller?: TextInputController})
### TextInputController<sup>8+</sup>
TextInput组件的控制器
,通过它操作TextInput组件
。
TextInput组件的控制器。
| 接口名称 | 功能描述 |
| -------- | -------- |
| caretPosition(value:
number):void | 设置输入光标的位置。
<br/>
value:从字符串开始到光标所在位置的字符长度。 |
#### 导入对象
```
controller: TextInputController = new TextInputController()
```
#### controller.caretPosition
caretPosition(value:
number): void
设置光标移动到指定位置。
-
参数
| 参数名 | 参数类型 | 必填 | 默认值 | 参数描述 |
| -------- | -------- |-------- |-------- |-------- |
| value | number |是 | - |设置输入光标的位置。
<br/>
value:从字符串开始到光标所在位置的字符长度。 |
## 事件
...
...
编辑
预览
Markdown
is supported
0%
请重试
或
添加新附件
.
添加附件
取消
You are about to add
0
people
to the discussion. Proceed with caution.
先完成此消息的编辑!
取消
想要评论请
注册
或
登录