空色天絵 / NEO TOKYO NOIR 01
54 字
1 分钟
微信小程序maxLength在IOS拼音输入法下异常
使用自定义的高阶函数在onInput会调中手动限制长度
import {BaseEventOrig, CommonEventFunction} from "@tarojs/components/types/common";import {InputProps} from "@tarojs/components";
export const onInputMaxLength = ( maxLength: number, onInput?: CommonEventFunction<InputProps.inputEventDetail>) => {
return (e: BaseEventOrig<InputProps.inputEventDetail>) => { e.detail.value = String(e.detail.value).substring(0, maxLength); onInput?.(e) }} 微信小程序maxLength在IOS拼音输入法下异常
https://fuwari.vercel.app/blog/posts/wx-mini/微信小程序maxlength在ios拼音输入法下异常/