icanhaz文档以此为例说明如何从远程服务器中提取ich模板.
$.getJSON('/myserver/templates.json', function (templates) {
$.each(templates, function (template) {
ich.addTemplate(template.name, template.template);
});
});
Run Code Online (Sandbox Code Playgroud)
但是,文档并没有真正告诉您远程服务器上的文件必须是什么样子.有人有主意吗?