We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
pdf-table-extractor.js 代码运行报错,变量未定义
https://github.com/ronnywang/pdf-table-extractor/blob/390ceb5b183e64897e7be86c32b4253569e65e42/pdf-table-extractor.js#L75L77
第75 和第77行有个变量 lineWidth , 没有定义,没有赋值, 处理特定的pdf时运行报错.
临时做了如下更改:
第53 行添加: var lineWidth = null;
var lineWidth = null;
第75 和 第77 行 前面插入 if (lineWidth) 语句
if (lineWidth)
共3处改动, 问一下改动的影响, 和实际的运行效果
The text was updated successfully, but these errors were encountered:
Check on my fork, it might fix your problem.
Sorry, something went wrong.
No branches or pull requests
pdf-table-extractor.js 代码运行报错,变量未定义
https://github.com/ronnywang/pdf-table-extractor/blob/390ceb5b183e64897e7be86c32b4253569e65e42/pdf-table-extractor.js#L75L77
第75 和第77行有个变量 lineWidth , 没有定义,没有赋值, 处理特定的pdf时运行报错.
临时做了如下更改:
第53 行添加:
var lineWidth = null;
第75 和 第77 行 前面插入
if (lineWidth)
语句共3处改动, 问一下改动的影响, 和实际的运行效果
The text was updated successfully, but these errors were encountered: