??在uniapp的項(xiàng)目中使用uni-easyinput組件师倔,在測試的時候你會發(fā)現(xiàn)textarea文本框輸入文字的時候添加140個文字以后就不能再添加文字了(沒有效果了)煤傍。
??在不設(shè)置maxlength的情況下碑幅,uniapp中默認(rèn)textarea中的最大字?jǐn)?shù)限制為140。即在不寫maxlength的時候,會在審查元素的時候,會自動生成 maxlength="140"
解決方法的代碼:
<uni-easyinput v-model="showName" type="textarea" maxlength="-1"></uni-easyinput>
<uni-easyinput v-model="showName" type="text" maxlength="-1"></uni-easyinput>