0
私はextjsとPlayデータバインディングを使いたいと思います。 は、私はこのようなExtJSの持つデータストアを作成しました:ExtJSとPlay!フレームワーク
Ext.define('Account', {
extend : 'Ext.data.Model',
fields : [{
name : 'description', type: 'string'
}, {
name : 'accountNumber', type: 'string'
}]
});
store = Ext.create('Ext.data.Store', {
model: 'Account',
proxy: {
type: 'ajax',
autoSave: false,
api: {
read: 'account/research',
create: 'account/new',
update: 'account/update',
destroy: 'account/delete'
},
reader: {
type: 'json'
},
writer: {
type: 'json',
writeAllFields: true,
encode: false
}
}
});
私はこれを行う場合:
var compte = Ext.create('Account', {
description: 'test'
});
store.create(0, compte);
が、私のコントローラで:
public static void new(Account account) {
account.save();
renderJSON("{success: true}");
}
をすべてのフィールドがnullです。 私は、おかげで