禁用默认的 iPhone 行为,这样当我点击输入框时
- 论坛
- 禁用默认的 iPhone 行为,这样当我点击输入框时
16 浏览
匿名的
0 Comments
问题的原因是在某些情况下,使用-imageChangedEvent将图片转换为ngx-image-cropper时,禁用了默认的iPhone行为。解决方法是使用-native/camera并通过imageBase64将图片传递给ngx-image-cropper。
imageChangedEvent(event: any): void { const file = event.target.files[0]; const reader = new FileReader(); reader.onloadend = () => { const base64 = reader.result as string; this.imageBase64 = base64; }; reader.readAsDataURL(file); }