deletefriend:function(_userid,_friendid){
Ext.Ajax.request({
url:'deleteFriend.do',
params : {
_userid : _userid,
_friendid:_friendid
},
success : function() {
Ext.getCmp("clientWindow").updateUserList();
Ext.MessageBox.alert("删除成功","删除好友成功");
},
failure : function() {
Ext.Msg.show({
itle : '错误提示',
msg : '删除好友失败!',
icon : Ext.Msg.ERROR,
buttons : Ext.Msg.OK
})
}
})
},
这个方法我去掉http://localhost:8080/WebQQ2009就说找不到这个action了,其他方法里的都能找到,
加上http://localhost:8080/WebQQ2009就能找到,但这样远程访问又不行!