鉴于这个调用FriendsController @ destroy的ajax块
$.ajax({ url: '/dashboard/friends/' + id,type: 'DELETE',data: { src: 'show' },success: function(response) { } });
删除过程完成后,如何在FriendsController中返回Redirect :: route(‘dashboard.friends.index’)?我想这是试图将响应返回给AJAX,后者不知道如何反应.
我可以只是window.location.href =’/ dashboard / friends’,但我想将一条成功消息发送到我无法用AJAX做的视图.