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拼音输入法下异常/
作者
Byte.n
发布于
2025-11-08
许可协议
CC BY-NC-SA 4.0