我在页面上有一个按钮 - 单击时,它将所有数据传递给可以更新每一行数据的 servlet。我的问题是如何将整个商店作为 json 数据传递给 servlet?有什么简单的方法吗?谢谢
问问题
1065 次
1 回答
1
这是我编写的一些代码,用于将商店获取到一个对象。然后可以使用dojo.toJson(obj);
. 我最初是从dojotoolkit 网站了解到的。(在信用到期时给予信用)。我意识到这段代码庞大而讨厌。大约一年前,当我寻找更好的方法时,我找不到。
JsonHelper.storeToObject = function(store) {
var object = [];
var index = -1;
store.fetch({
onItem : function(item, request) {
object[++index] = JsonHelper.itemToObject(store, item);
}
});
return object;
};
JsonHelper.itemToObject = function(store, item) {
// store:
// The datastore the item came from.
// item:
// The item in question.
var obj = {};
if (item && store) {
// Determine the attributes we need to process.
var attributes = store.getAttributes(item);
if (attributes && attributes.length > 0) {
var i;
for (i = 0; i < attributes.length; i++) {
var values = store.getValues(item, attributes[i]);
if (values) {
// Handle multivalued and single-valued attributes.
if (values.length > 1) {
var j;
obj[attributes[i]] = [];
for (j = 0; j < values.length; j++) {
var value = values[j];
// Check that the value isn't another item. If
// it is, process it as an item.
if (store.isItem(value)) {
obj[attributes[i]].push(itemToObject(store,
value));
} else {
obj[attributes[i]].push(value);
}
}
} else {
if (store.isItem(values[0])) {
obj[attributes[i]] = itemToObject(store,
values[0]);
} else {
obj[attributes[i]] = values[0];
}
}
}
}
}
}
return obj;
};
于 2013-03-27T01:54:07.897 回答