有一个需求 在APP里面 嵌一个活动,是网页做的。需要用到表单上传,但发现 input file 在部分安卓机器上面执行不了,微信 和 UC 貌似是可以,但是不知道是怎么实现的。
于是想了个办法 页面调客户端 图片转base64传到前端,方案可行,但是产品需求用户上传图片不压缩,有的3MB 4MB,这就导致客户端 内存飚升容易崩溃。
请问各位 在安卓webview上面,或者其他内嵌浏览器上面 有很好的解决这个问题的方法吗?
安卓居然不支持 input file 这么坑 。
我是做web开发的,对安卓也不是很清楚,请各位指点指点 谢谢
高洛峰2017-04-17 14:29:07
In the future, I switched to using the client to upload images. The client has to put together a form to submit. This is the only way. Android 4.4 is a pit
大家讲道理2017-04-17 14:29:07
This issue must be supported by native
classmates.
See:
The pitfalls of Android WebView in uploading files
html input type 'file' is not working on webview in android