【发布时间】:2017-07-31 14:50:08
【问题描述】:
我目前正在做一个项目,以基于 lunr.js 在 JavaScript 中实现全文搜索客户端。
问题是,我正在努力构建然后保存索引,因为我有几个异步调用。
function buildIndex(rawIndex, root, indexPath = root + 'js/app/index.json') {
var path = path || require('path');
var fs = fs || require('fs'),
promesses = [],
ignore = ['node_modules'],
files = fs.readdirSync(root);
files.forEach(function (file) {
if (fs.statSync(path.join(root, file)).isDirectory() && ignore.indexOf(file) == -1) {
buildIndex(rawIndex, path.join(root, file), indexPath);
}
else if (file.substr(-5) === '.html' && file != 'example.html') {
var promesse = JSDOM.fromFile(path.join(root, file)).then(dom => {
var $ = require('../lib/_jquery')(dom.window);
populate();
console.log(file + " indexé");
function populate() {
$('h1, h2, h3, h4, h5, h6').each(function () {
var title = $(this);
var link = path.join(root, file).replace('..\\', '') + "#" + title.prop('id');
var body = title.nextUntil('h1, h2, h3, h4, h5, h6');
rawIndex.add({
id: link,
title: title.text().latinise(),
body: body.text().latinise()
});
});
};
});
promesses.push(promesse);
}
});
Promise.all(promesses)
.then(function () {
fs.writeFileSync(indexPath, "var data = " + JSON.stringify(rawIndex), 'utf8');
})
.catch(function (err) {
console.log("Failed:", err);
});
};
提前致谢。
【问题讨论】:
-
你不是在等待递归调用的结果——它没有返回一个承诺,你也没有把它放在你的数组中。
-
@DnzzL 是
rawIndex.add异步调用吗? -
@Bergi 确实如此。我不知道如何正确实现它。
-
@JamshidAsadzadeh 好吧,我不这么认为,至少文档中没有提到:lunrjs.com/docs/lunr.Builder.html。我宁愿说问题与 $('h1, h2, h3, h4, h5, h6').each() 和循环内循环有关。
-
@DnzzL 您对revision 3 的编辑使代码明显变差。如果你把它回滚,我不介意。
标签: javascript node.js asynchronous lunrjs