使用fetch
获取数据然后使用Handlebars执行数据很容易,当您已经编译模板时..
var template = Handlebars.compile(the-html);
fetch('data.json')
.then(function(response) {
return response.json();
})
.then(function(json) {
var html = template(json[0]);
// use this somehow
});
但我想基于promise链中预先确定的一些路径获取大量文件(包含把手标签的标记和脚本),并将它们编译为Handlebars模板,然后将它们应用到我以前的某个模型中在承诺链中做好准备。
var json = {some-data};
some-promise-step()
.then(function(json) {
var templates = Handlebars.templates = Handlebars.templates || {}; // global handlebars object
var urls = ["/abc/templates/" + json.template + "/index.html", "/abc/templates/" + json.template + "/style.css", "/abc/templates/" + json.template + "/script.js"]; // simplified
var promises = urls.map(function(url) {
return fetch(url).then(function(response) {
var name = response.url.split("/").pop();
return response.text().then(function(data) {
templates[name] = Handlebars.compile(data);
});
});
});
return Promise.all(promises);
}).then(function(result) { // result is an array of 'undefined' ?? hmm
return Promise.all([
zip.file("index.html", Handlebars.templates["index.html"](json)),
zip.file("style.css", Handlebars.templates["style.css"](json)),
zip.file("script.js", Handlebars.templates["script.js"](json)),
]);
}).then( // more steps
Handlebars需要编译到全局Handlebars.templates []对象(已经存在),然后才能在下一步使用它们(其中zip
对象被提供应用模板的输出并返回承诺)
但是当提取返回并且.text()
方法返回以编译模板时,外部promise已经解决并开始尝试使用模板。
我不希望最终的.then(
开始做它需要的东西,直到fetch promises全部解决后......
答案 0 :(得分:0)
啊哈!不要返回获取承诺;返回一个在fetch的response.text()promise结束时解析的promise。
var promises = urls.map(function(url) {
return new Promise(function(resolve,reject) {
fetch(url).then(function(response) {
var name = response.url.split("/").pop();
return response.text().then(function(html) {
templates[name] = Handlebars.compile(html);
resolve(name);
});
});
});
});
return Promise.all(promises);
仍然可以进一步优化整个想法,但这似乎现在有效。