写了一个移动端的web,里面有一个textarea用于给用户输入内容。由于后台设置了拒绝特殊字符,所以提交textarea内容时如果用户输入了手机输入法(如:百度输入法,搜狗输入法等)的Emoji表情进去,点击提交按钮是提交不成功的。
这时候问题来了,返回提交不成功的报错后,想要删掉textarea里的表情是无法删除的(一直点击删除按钮都是卡住不动的)。部分情况部分机子可以被删掉,但是删掉后竟然无法再往里面输入任何信息,除非让页面重新加载。否则一直都是这样的情况。
现在我只能做一个弹出提示不能输入表情字符,然后自动刷新一下页面。但是这样做的话,如果用户输入了一大段文字,最后加了个表情进去,要是强制刷新就把人家整一段话也刷掉了。这样有点不合适用户体验。
请问有人遇到过这样的问题吗?这种问题要怎么处理?(PS:这个问题在Android端上遇到的)
天蓬老师2017-04-17 13:54:49
Yes, I have encountered this before. The solution is to use regular expressions to see those expressions that can match the input. Naturally, the expressions are filtered out
高洛峰2017-04-17 13:54:49
You can first save the content submitted by the user after filtering the expressions, and then refresh and read the saved content for display. For example: it can be implemented using localcache, saving to server cache, etc.
大家讲道理2017-04-17 13:54:49
Has the original poster solved it~? I also encountered the same problem ~ webview emoticons cannot be deleted