我使用doT.js作为模板引擎,我需要使用html文件作为部分视图模板。有没有办法传递网址而不是模板的html字符串?
答案 0 :(得分:1)
我找不到任何相关文档,但是很容易使用XHR请求来读取HTML文件并传递给模板字符串:
假设您有一种获取HTML文件内容的方法
function getPartialView (template) {
// Return a new promise.
return new Promise(function(resolve, reject) {
// Do the usual XHR stuff
var req = new XMLHttpRequest();
req.open('GET', "/templates/" + template + ".html", true);
// req.setRequestHeader('Content-Type', 'Application/JSON');
req.onreadystatechange = function() {
if (req.readyState != 4 || req.status != 200) return;
// This is called even on 404 etc
// so check the status
resolve(req.responseText);
};
// Handle network errors
req.onerror = function() {
reject(Error("Network Error"));
};
// Make the request
req.send();
});
}
然后您可以在模板生成器中使用它:
getPartialView('myTemplate').then(function (result) {
// getting the template
var pagefn = doT.template(result, settings);
// appending to view
// data is the real data you want to render the template for
document.querySelector('#mayTemplateWrapper').innerHTML = pagefn(data);
});