我有一个在JSFiddle工作的例子。
它有一段由YUI DataTable使用的JSON,我需要使用KnockoutJS绑定来创建它。我是KnockoutJS的新手,我想知道如何做到这一点。
该表应在标记-下创建
<div class="yui3-skin-sam" id="datatable"></div>
代码如下-
YUI().use('datatable', 'datasource-local', 'datasource-jsonschema',function(Y){
var data = {"generations": [{
"type": "Modern",
"showName": "The Modern Generation",
"imgURI": "file:/D:/projectGen.png",
"relations": {
"father": {
"age": "49",
"firstName": "George",
"lastName": "Mathews",
"priority": "1",
"profession": "Service"
},
"mother": {
"age": "47",
"firstName": "Susan",
"lastName": "Aldrin",
"priority": "2",
"profession": "Home-Maker"
},
"brother": {
"age": "28",
"firstName": "Martin",
"lastName": "Mathews J",
"priority": "3",
"profession": "Engineer"
},
"sister": {
"age": "23",
"firstName": "Laura",
"lastName": "Mathews J",
"priority": "4",
"profession": "Fashion Model"
},
"aunt": {
"age": "50",
"firstName": "Sally",
"lastName": "Bekkers",
"priority": "5",
"profession": "Singer"
}
}
}]
};
var localDataSource = new Y.DataSource.Local({source:data});
var dynamicColumns = Y.Object.keys(data.generations[0].relations);
var config = {
schema: {
resultListLocator: 'generations',
resultFields: [{key:'showName'}]
}
};
Y.Array.each(dynamicColumns,function(key){
config.schema.resultFields.push({
key: key,
locator: "relations."+key + ".firstName"
});
});
var jsonSchema = localDataSource.plug(Y.Plugin.DataSourceJSONSchema, config);
console.log(config.schema.resultFields);
var table = new Y.DataTable({
columns: config.schema.resultFields
});
table.plug(Y.Plugin.DataTableDataSource, {
datasource: localDataSource
});
table.render('#datatable');
table.datasource.load();
});
这可以使用KnockoutJS招标来完成吗?我知道使用KnockoutJS绑定可以很好地创建HTML表,但我发现YUI部分很棘手。请帮忙。
我认为您需要向表单元格添加一些数据绑定属性。YUI表允许您通过使用模板自定义TD元素的创建。查看YUI文档,了解有关此的更多信息
自定义绑定有助于解决此问题。我可以将数据表创建代码放在自定义绑定中,这样它就可以在调用绑定的标记上创建表。凉的