-
Notifications
You must be signed in to change notification settings - Fork 4.8k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Taro从1.2.13版本升级到1.3.11版本后,build为H5版本,原本引入的exif-js库在执行EXIF.getData时不生效 #4109
Comments
欢迎提交 Issue~ 如果你提交的是 bug 报告,请务必遵循 Issue 模板的规范,尽量用简洁的语言描述你的问题,最好能提供一个稳定简单的复现。🙏🙏🙏 如果你的信息提供过于模糊或不足,或者已经其他 issue 已经存在相关内容,你的 issue 有可能会被关闭。 Good luck and happy coding~ |
需要代码复现。 |
CC @Littly |
用两个不同版本编译一下就知道了:� EXIF.getData(file, () => { |
Hello~ 您的问题所提供的信息不足,我们无法定位到具体的问题。如果有空的话还请拔冗提供更具体的信息,否则这个 issue 将在 15 天后被自动关闭。 如果您在这 15 天中更新更多信息自动关闭的流程会自动取消,如有其他问题也可以发起新的 Issue。 Good luck and happy coding~ |
问题描述
Taro从1.2.13版本升级到1.3.11版本后,原本引入的exif-js库在执行EXIF.getData时不生效,
经过测试发现:Taro1.3.11或者1.3.12版本在开发环境是没有问题的,问题出现在打包为H5版本,其他版本暂时没有测试过。
Taro从1.3.11降级到1.2.13版本后,打包为H5后,该问题解决。
复现步骤
EXIF.getData(file, () => {
const orientation = EXIF.getTag(file, 'Orientation');
// 此处代码不会执行
}
import EXIF from 'exif-js';
EXIF.getData(file, () => {
// 正常情况下,此处代码会正常执行,现在taro升级之后build为h5版本后,此处代码不执行
const orientation = EXIF.getTag(file, 'Orientation');
console.log('orientation', orientation);
});
期望行为
Taro最新版本打包出来的H5版本可以正常使用exif-js库的功能。
系统信息。
The text was updated successfully, but these errors were encountered: