0
除了重定向到主URL,代碼似乎正常工作。如何讓ajax被重定向到主URL。在rails中的AJAX請求之後重定向到html響應
JS功能
func1: function(dest_board, copy_option, member_option){
$.ajax({
url: "get_values",
type: "POST",
data: {new_board: dest_board, copy_option: copy_option, member_option: member_option}
}).success($.proxy(function(data, xhr) {
},this));
}
在控制器功能
respond_to do |format|
format.html {
redirect_to home_url
}
end
我使用了鏈接中給出的代碼。它像一個魅力。謝謝。 –