gpt4 book ai didi

json - Dojo 中的 DataGrid ,带有来自 servlet 的 json 数据

转载 作者:行者123 更新时间:2023-12-05 00:42:03 26 4
gpt4 key购买 nike

我第一次使用 JSON...
并想用我的 JSON 数据填充我的数据网格,
这是我的 JSON 数据:

{
"head": {
"vars": [ "s" , "fname" , "lname" ]
} ,
"results": {
"bindings": [
{
"s": { "type": "uri" , "value": "http://tn.gov.in/Person/41" } ,
"fname": { "type": "literal" , "value": " } ,
"lname": { "type": "literal" ,n" }
} ,
{
"s": { "type": "uri" , "value": "http://tn.gov.in/Person/37" } ,
"fname": { "type": "literal" , "value": "sh" } ,
"lname": { "type": "literal" , "value": "Vvan" }
} ,
{
"s": { "type": "uri" , "value": "http://tn.gov.in/Person/39" } ,
"fname": { "type": "literal" , "value": "Vavan " } ,
"lname": { "type": "literal" , "value": "Sran" }
}
]
}
}

我要显示 fnamelname在数据网格中我应该怎么做呢?
任何人都可以提供适用于上述 JSON 的示例代码吗?我用例子尝试了很多,我得到了一个空白网格

最佳答案

这里的关键点是您需要先转换数据,然后才能在 dojo 网格中使用它。

可以在 here 找到现场演示。 .

dojo.require("dojox.grid.DataGrid");
dojo.require("dojo.data.ItemFileReadStore");

dojo.addOnLoad(function() {
var data = { "head": { "vars": [ "s" , "fname" , "lname" ] } , "results": { "bindings": [ { "s": { "type": "uri" , "value": "http://tn.gov.in/Person/41" } , "fname": { "type": "literal" , "value": "Gayathri" } , "lname": { "type": "literal" , "value": "Vasudevan" } } , { "s": { "type": "uri" , "value": "http://tn.gov.in/Person/37" } , "fname": { "type": "literal" , "value": "Magesh" } , "lname": { "type": "literal" , "value": "Vasudevan" } } , { "s": { "type": "uri" , "value": "http://tn.gov.in/Person/39" } , "fname": { "type": "literal" , "value": "Vasudevan " } , "lname": { "type": "literal" , "value": "Srinivasan" } } ] } };

var items = dojo.map(data.results.bindings, function(binding) {
return {fname : binding.fname.value, lname : binding.lname.value};
});

var store = new dojo.data.ItemFileReadStore({
data : {
items : items
}
});

_createGrid(store);

function _createGrid(store) {
var layout = _getGridLayout(),
node = dojo.create("div", {}, dojo.byId("grid"), "only");
var grid = new dojox.grid.DataGrid({
store : store,
structure : layout,
rowsPerPage: 10
}, node);
grid.update();
grid.startup();
return grid;
}

function _getGridLayout() {
return [[
{ field : "fname", name : "First Name", width : "50%"},
{ field : "lname", name : "Last Name", width : "50%" }
]];
}
});

关于json - Dojo 中的 DataGrid ,带有来自 servlet 的 json 数据,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/2423459/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com