我想添加數據在json文件的末尾。我很困惑。我做了什麼是我添加下面的代碼,但它不工作。如何通過Extjs將新記錄添加到json文件?
PersonRecord= Ext.define('Persons',{
extend:'Ext.data.Model',
fields:[......]
});
var ds=new Ext.data.Store({
storeId: 'person',
model: 'Persons',
autoLoad: true,
proxy: {
type: 'ajax',
url: '../data.json',
reader:{
type: 'json',
root:'pers'
}
}
});
.....
'id':Ext.id(),
'fName':fName,
'lName':lName,
'fatherName':fatherName,
'nationalCode':nationalCode,
'tell':phone
});
ds.add(record);
ds.commitChanges();
但不工作。 我可以加載JSON數據,但不能將新記錄添加到JSON
我做了一個谷歌,看看有人已經做了這樣的定製作家,但沒有看到任何東西。聽起來像一個有趣的週末項目:) – existdissolve