Open Hughe5 opened 5 months ago
使用 parseOfdDocument 方法解析 ofd 文件,success 返回的数据里 pages[0][47].json["ofd:Template"] 是个数组,不是对象,如下图,
parseOfdDocument
success
pages[0][47].json["ofd:Template"]
当 template 是数组时,template['@_TemplateID']]['json'] 会报 TypeError: Cannot read properties of undefined (reading 'json') 的错误,如下图,
template['@_TemplateID']]['json']
TypeError: Cannot read properties of undefined (reading 'json')
@DLTech21
存在多个 Template 时会报错
自行修改
@DLTech21 大佬,帮忙评审并合入一下 https://github.com/DLTech21/ofd.js/pull/113
使用
parseOfdDocument
方法解析 ofd 文件,success
返回的数据里pages[0][47].json["ofd:Template"]
是个数组,不是对象,如下图,当 template 是数组时,
template['@_TemplateID']]['json']
会报TypeError: Cannot read properties of undefined (reading 'json')
的错误,如下图,