我尝试使用restful执行删除对象时遇到问题: 在xtype" actioncolumn"按钮我有这个处理程序:
handler: function (grid, rowIndex, colIndex) {
Ext.MessageBox.confirm('Delete', 'Are you sure ?', function (btn) {
if (btn === 'yes') {
var rec = grid.getStore().getAt(rowIndex);
store.removeAt(rowIndex);
store.sync();
}
});
}
当我点击删除按钮后,请求网址:
http://10.100.0.194:8080/api/users/App.model.User-6
地狱来自哪里:App.model.User-6 ?,它应该是用户ID对象(int)。在我的模型中我已经idProperty:user_id已经。
感谢您的帮助