我正在尝试为 Post#new 操作自动保存表单。每隔一分钟左右,我想 POST 到 Post#autosave,然后我会检查 first_or_create 并保存/更新 Posts 表中的记录。不过我的问题是,我无法再从表单中访问 POST 参数。我正在尝试这样做:
$(function() {
if ($("#new_post").length > 0) {
setTimeout(autoSavePost, 60000);
}
});
function autoSavePost() {
$.ajax({
type: "POST",
url: "/posts/autosave",
dataType: "script",
success: function(data) {
console.log(data);
}
});
setTimeout(autoSavePost, 60000);
}
我有这条路线:
post 'posts/autosave', as: :autosave_post_path
问题是,服务器日志显示参数哈希仅包含:action 和:controller。我怎样才能访问作为 POST 数据的一部分发送的等效内容。