大家好,我正在使用 Extjs 4.2 数据网格,我需要将我的“存储”转换为 json 数组并将其发送到服务器端(即 java)。
这是我的模型。
Ext.define('Writer.Document',{
extend: 'Ext.data.Model',
fields: ['id', 'name', 'notes', 'Type', 'date']
});
我的商店(包含对象列表)是
var store = Ext.create('Ext.data.Store', {
model: 'Writer.Document',
autoLoad: true,
proxy: {
type: 'ajax',
url : 'findPatientRecordAction',
reader: {
type: 'json',
successProperty: 'success',
root: 'prognosis',
messageProperty: 'message'
}
fields: ['id','name', 'date', 'notes' , 'Type'],
},
});
因此,在一次提交网格中的值时,我需要在我的服务器端有一个 ist 对象。所以我需要从客户端发送 JSON 数组。
任何人都可以在这里帮助我如何从我的商店制作 JSONArray 对象并发送到服务器端???
问候:开发