- 快速开始
- JSX 介绍
- JSX+ 介绍
- 组件
- 事件处理
- 样式设置
- Hooks 介绍
- Driver 介绍
- 容器差异
- 工程介绍
- 目录结构
- 应用配置
- 应用入口
- 生命周期
- 路由管理
- 简介
- 语法约束
- Hooks
- 多端组件开发
- API 使用
- 静态资源引用
- 项目构建配置
- 页面配置
- 使用原生项目配置文件
- Rax 与小程序代码混用
- FAQ
- 更新日志
- 简介
- 环境变量与 Framework
- Weex Style 支持表
- Weex 组件
- Weex 模块
- 页面降级
- JS Service
- Bundle 解析
- 事件与手势
- 事件通信
- Weex 国际化
- Weex 常见问题
- 简介
- Document
- App Shell
- 代码分离
- 保存至桌面
- 渲染节点快照
- 预加载和预渲染
- 页面保活
- 缓存控制
- PHA 介绍
- 快速开始
- 编码指南
- 数据请求
- FaaS 接入: Now
- FaaS 接入: FC
- 与 Node 应用集成
- 数据请求
- 异步编程
- Rax 错误码
- 简介
- Lite 工程
- 云端一体化工程
- 插件配置
- 插件开发
- 插件简介
- build-plugin-rax-app
- build-plugin-rax-component
- build-plugin-rax-multi-pages
- build-plugin-rax-ssr
- build-plugin-rax-compat-react
- rax-plugin-app 0.1.0 升级
- 调试 Web
- 调试小程序
- 加载性能优化
- 渲染性能优化
- 从 Rax 0.x 升级
- 从 React 迁移
- API 概述
- render
- hydrate
- createPortal
- findDOMNode
- setNativeProps
- getElementById
- unmountComponentAtNode
- createElement
- cloneElement
- createFactory
- isValidElement
- Children
- memo
- Fragment
- createRef
- forwardRef
- useState
- useEffect
- useLayoutEffect
- useContext
- useRef
- useCallback
- useMemo
- useReducer
- useImperativeHandle
- PropTypes
- version
- ActionSheet
- Background
- Keyboard
- Animation
- Transition
- Toast
- Alert
- Confirm
- Loading
- Navigate
- ChooseImage
- Image
- Request
- Network
- File
- Env
- Device
- Clipboard
- AppState
- AsyncStorage
- Accelerometer
- 组件概述
- Text
- View
- TextInput
- Link
- Icon
- Image
- Picture
- Video
- ScrollView
- RecyclerView
- Waterfall
- Embed
- Countdown
- Canvas
- RefreshControl
- Slider
- Modal
- Weex JS Service
- Rax 长列表最佳实践
- 如何减小 Bundle Size
- Rax 0.x 开发工具
- Native 知识扫盲
- iOS 无障碍
- Rax 性能最佳实践
- 从零上手 Rax
- Rax v0.6 组件体验升级
- Rax v0.5 建立服务体系
- Rax v0.3 跨端生态建设
- Rax v0.2 基础能力建设
- 2016 淘宝双促中的 Rax
- Why Rax?
文章来源于网络收集而来,版权归原创者所有,如有侵权请及时联系!
TextInput
描述
- TextInput 是唤起用户键盘的基础组件。
- 当添加 multiline 属性的时候,TextInput 相当于 Web 容器中的 textarea,可以进行多行输入。
安装
$ npm install rax-textinput --save
属性
属性 | 类型 | 默认值 | 必填 | 描述 | 支持 |
---|---|---|---|---|---|
multiline | boolean | - | ✘ | 定义该属性文本框可以输入多行文字 | |
accessibilityLabel | String | - | ✘ | 为元素添加标识 | |
autoComplete | boolean | - | ✘ | 添加开启自动完成功能 | |
autoFocus | boolean | - | ✘ | 添加开启获取焦点 | |
onAppear | function | - | ✘ | 当前元素可见时触发 | |
editable | boolean | - | ✘ | 默认为 true 如果为 fase 则文本框不可编辑 | |
keyboardType | string | - | ✘ | 设置弹出哪种软键盘 可用的值有default ascii-capable numbers-and-punctuation url number-pad phone-pad name-phone-pad email-address decimal-pad twitter web-search numeric (微信小程序支持的值有:text number idcard digit ) | |
maxLength | number | - | ✘ | 设置最大可输入值 | |
maxNumberOfLines | number | - | ✘ | 当文本框为 mutiline 时设置最多的行数 | |
numberOfLines | number | - | ✘ | 同上设置行数 | |
placeholder | string | - | ✘ | 设置文本框提示 | |
password | boolean | - | ✘ | 文本框内容密码显示 | |
secureTextEntry | boolean | - | ✘ | 同上文本框内容密码显示 | |
value | string | - | ✘ | 文本框的文字内容 (受控) | |
defaultValue | string | - | ✘ | 文本框的文字内容(非受控) | |
confirmType | string | - | false | 设置键盘右下角按钮的文字,有效值:done(显示“完成”)、go(显示“前往”)、next(显示“下一个”)、search(显示“搜索”)、send(显示“发送”),平台不同显示的文字略有差异 | |
onBlur | function | - | ✘ | 文本框失焦时调用此函数。onBlur={() => console.log('失焦啦')} | |
onFocus | function | - | ✘ | 文本框获得焦点时调用此函数 | |
onChange | function | - | ✘ | 文本框内容变化时调用此函数(用户输入完成时触发。通常在 blur 事件之后) | |
onChangeText | function | - | ✘ | 触发时机和onChange 一致, 区别在于该函数的参数是文本框内容 | |
onInput | function | - | ✘ | 文本框输入内容时调用此函数 | |
onConfirm | function | - | ✘ | 点击键盘完成时触发 | |
enableNative | boolean | - | true | 支付宝小程序是否使用原生组件渲染 | |
fixed | boolean | - | false | 微信小程序输入框 position 是否为 fixed |
注:基础属性、事件及图片含义见组件概述。
方法
focus()
取焦点方法(小程序不支持)。
blur()
失去焦点方法(小程序不支持)。
clear()
清除文本框内容(小程序不支持)。
示例
基础用法
import { createElement, render } from "rax";
import DriverUniversal from 'driver-universal';
import TextInput from "rax-textinput";
function App() {
return (
<TextInput autoFocus={true} />
);
}
render(<App />, document.body, { driver: DriverUniversal });
多行输入框
import { createElement, render } from "rax";
import DriverUniversal from 'driver-universal';
import TextInput from "rax-textinput";
function App() {
return (
<View style={{margin: 20}}>
<TextInput
multiline={true}
numberOfLines={3}
style={{
height: 150,
width: 600,
borderWidth: 1,
borderColor: '#dddddd',
borderStyle: 'solid'
}}
/>
</View>
);
}
render(<App />, document.body, { driver: DriverUniversal });
受控组件
import { createElement, render, useState } from "rax";
import DriverUniversal from 'driver-universal';
import View from 'rax-view';
import Text from 'rax-text';
import TextInput from "rax-textinput";
function App() {
const [value, setValue] = useState('');
return (
<View style={{margin: 20}}>
<TextInput
value={value}
style={{
width: 600,
borderWidth: 1,
borderColor: '#dddddd',
borderStyle: 'solid'
}}
onChangeText={text => setValue(text)}
/>
<Text>Result:</Text>
<Text>{value}</Text>
</View>
);
}
render(<App />, document.body, { driver: DriverUniversal });
注意
- 支付宝小程序中, input 如果父类是
position: fixed
,可以加上enableNative={false}
,解决输入框错位问题。
- 微信小程序中,如果 textarea 是在一个
position:fixed
的区域,需要显示指定属性fixed
为true
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论