我正在使用https://github.com/augustl/js-epub来解析.epub文件。但是我收到错误,因为“XML解析错误:找不到元素”。我没有问题直到第3步,它在后处理步骤中失败了。我使用以下代码
$(document).ready(function(){
$('#something').html('fetching');
$.ajax({
url: "alice.epub",
complete: function(response, status, request) {
var the_zip = new JSUnzip(response.responseText);
$('#something').html('finished with ' + status);
console.log("is it zip?" + the_zip.isZipFile());
var epub = new JSEpub(response.responseText);
epub.processInSteps(function (step, extras) {
var msg = '';
console.log(step);
if (step === 1) {
msg = "Unzipping";
} else if (step === 2) {
msg = "Uncompressing " + extras;
}
else if (step === 3) {
msg = "Reading OPS";
}
else if (step === 4) {
msg = "Post processing";
alert(msg);
}
else if (step === 5) {
msg = "Finishing";
alert('done!');
}
else {
msg = "Error!";
}
$('#something').html(msg);
});
}
});
});
请有人告诉我上面代码中的错误。
答案 0 :(得分:2)
您是否尝试过js-epub的验证功能?
var vali = epub.validate();
如果某些值是“未定义”,您的控制台现在应抛出异常;
顺便说一句..在检查js-epub.js代码时 - 第15行(膨胀)中缺少“新”标签....也许这解决了你的问题。
编辑:如果你解决问题,分享答案会很好。