5

icanhaz 文档以此为例说明如何从远程服务器中提取 ich 模板。

$.getJSON('/myserver/templates.json', function (templates) {
    $.each(templates, function (template) {
         ich.addTemplate(template.name, template.template);
    });
});

但是,文档并没有真正告诉您远程服务器上的文件应该是什么样子。有人有想法么?

4

1 回答 1

3

您的模板 JSON 对象可能如下所示:

{
   "templates": {"name": "optionTemplate",
                 "template": "{{#options}}<option value='{{value}}'>{{display}}</option>{{/options}}"
                }
}

这将为选择框中的选项定义一个模板。

您可以使用您指定的代码添加模板(实际上我稍微调整了它,因为我无法让它按指定的方式工作):

$.getJSON('templates.json', function (templates) {
    $.each(templates, function () {
        ich.addTemplate(this.name, this.template);
    });
});

//now call getJSON on your input data

$.getJSON('options.json', function (data) {
    var optionElements = ich.optionTemplate(data);
    $('#selectBox').append(optionElements);
}

为清楚起见,以下是 options.json 包含的内容:

{
  "options": [
             { "value": "optionValue",
               "display": "optionDisplay"
             },
             { "value": "optionValue2",
               "display": "optionDisplay2"
             }]
}

请让我知道你是怎么过的:)

于 2013-05-09T14:02:40.573 回答