extjs4 を使用して JSON ファイルを生成するにはどうすればよいですか? Ext.encode
次のような文字列のリストを返す関数があります。
{"1145":
{
"IN1":15,
"IN2":6,
"OUT1 Fix":11,
"OUT1 Alt":3
}
}
それをJSONファイルに保存するにはどうすればよいですか? MVC モデルで extjs4 を使用しています。ストアは次のようになります。
Ext.define('M.store.tempGraphData', {
extend : 'Ext.data.Store',
model : 'M.model.tempGraphDataModel',
autoload : true,
proxy : {
//I guess this is where I should put something to write to my json file?
}
},
});