是否可以缓存传递给jTemplates的模板?我每分钟都会通过setInterval加载表数据,每次都会抓取模板,只有1.6kb,但仍然如此。从jTemplates Documentation它似乎接受了一个缓存对象,但我看不到它正在工作/我认为它是如何传递选项对象的。
$.ajax({ type: "POST",
url: "ExternalContent.asmx/RecentOpps",
async: true,
contentType: "application/json; charset=utf-8",
data: "{}",
dataType: "json",
success: function (msg) {
$(".jqOppInfo").setTemplateURL("xml/RecentOppTemplate.htm", {}, { cache: true });
$(".jqOppInfo").processTemplate(msg);
$(".jqToolTip").tooltip({ track: true });
}
});