Skip to content
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

Closed
E-two opened this issue Aug 8, 2019 · 5 comments
Assignees

Comments

@E-two
Copy link

E-two commented Aug 8, 2019

问题描述
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后,该问题解决。

复现步骤

  1. Taro升级到1.3.11或者1.3.12版本
  2. 代码里引入exif-js库 npm install exif-js --save
  3. 使用该函数获取H5页面拍摄图片的方向:
    EXIF.getData(file, () => {
    const orientation = EXIF.getTag(file, 'Orientation');
    // 此处代码不会执行
    }
  4. 打包编译为H5版本进行测试
  5. 例如:
    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库的功能。

系统信息

  • 操作系统: [Mac OS]
  • Taro 版本 [v.1.3.11]
  • Node.js 版本 [v10.14.0]
  • 报错平台 [h5]
@taro-bot
Copy link

taro-bot bot commented Aug 8, 2019

欢迎提交 Issue~

如果你提交的是 bug 报告,请务必遵循 Issue 模板的规范,尽量用简洁的语言描述你的问题,最好能提供一个稳定简单的复现。🙏🙏🙏

如果你的信息提供过于模糊或不足,或者已经其他 issue 已经存在相关内容,你的 issue 有可能会被关闭。

Good luck and happy coding~

@Littly
Copy link
Contributor

Littly commented Aug 12, 2019

需要代码复现。

@taro-bot
Copy link

taro-bot bot commented Aug 12, 2019

CC @Littly

@E-two
Copy link
Author

E-two commented Aug 12, 2019

需要代码复现。

用两个不同版本编译一下就知道了:�
eg:
import EXIF from 'exif-js';

EXIF.getData(file, () => {
// 正常情况下,此处代码会正常执行,现在taro升级之后build为h5版本后,此处代码不执行
const orientation = EXIF.getTag(file, 'Orientation');
console.log('orientation', orientation);
});

@taro-bot
Copy link

taro-bot bot commented Aug 12, 2019

Hello~

您的问题所提供的信息不足,我们无法定位到具体的问题。如果有空的话还请拔冗提供更具体的信息,否则这个 issue 将在 15 天后被自动关闭。

如果您在这 15 天中更新更多信息自动关闭的流程会自动取消,如有其他问题也可以发起新的 Issue。

Good luck and happy coding~

@taro-bot taro-bot bot removed the to be closed label Aug 27, 2019
@taro-bot taro-bot bot closed this as completed Aug 27, 2019
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

2 participants