EXTJS DELETE http请求的代理类型rest mal格式的url

时间:2014-08-14 21:19:08

标签: rest extjs

我尝试使用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已经。

感谢您的帮助

0 个答案:

没有答案