taro 小程序 textarea 不能连续输入
taro官网代码示例
import Taro from ‘@tarojs/taro‘ import { AtTextarea } from ‘taro-ui‘ export default class Index extends Taro.Component { constructor () { super(...arguments) this.state = { value: ‘‘ } } handleChange (value) { this.setState({ value }) } render () { return ( <AtTextarea value={this.state.value} onChange={this.handleChange.bind(this)} maxLength={200} placeholder=‘你的问题是...‘ /> ) } }
@萍2樱释?( ′???` )
taro 小程序 textarea 不能连续输入
原文:https://www.cnblogs.com/mggahui/p/14416209.html