如何加载()或获取()html页面并将其保存在变量中?
我问这个问题是为了能够从 kendo.View 中的单独文件加载视图。所有 kendo 示例都解释了如何处理来自 string 的布局和视图:
var foo = new kendo.View("<span>Foo</span>");
像这样使用字符串是不干净的。我希望能够做类似的事情:
var bar = new kendo.View(viewLoader.loadView("app/bar.html"));
有了这样的想法
var viewLoader = (function ($, host) {
//Loads external templates from path and injects in to page DOM
return {
//Method: loadExtTemplate
//Params: (string) path: the relative path to a file that contains template definition(s)
loadView: function (path) {
//Use jQuery Ajax to fetch the template file
var tmplLoader = $.ajax({
url: path,
async: false
}).responseText;
//tmplLoader.complete(function () {
// //Publish an event that indicates when a template is done loading
// $(host).trigger("TEMPLATE_LOADED", [path]);
//});
}
};
})(jQuery, document);
这是行不通的。为什么?如何简单地加载 html 页面并将其保存在 var 中以使用 jendo 视图?