gpt4 book ai didi

javascript - 在 ajax 回调上重新加载 Rails 部分

转载 作者:行者123 更新时间:2023-11-28 08:55:29 25 4
gpt4 key购买 nike

在我的 Rails 应用程序中,用户拥有可以在其中创建新博客文章的文件夹。当用户创建新文件夹时,我想刷新包含所有文件夹帖子的部分。我尝试在文件夹 Controller 中创建一个操作,仅再次调用部分并替换它,但我收到 CanCan::AccessDenied 500 错误。

在我的index.html.erb中,这是我的文件夹显示部分的链接:

<%= link_to folder_path(folder), remote: true %>

这是加载到 View 中的部分内容:

    <div id="panel-container">
<div id="entry-container" class="entry-window">
<div id="meta-bar" class="top">
<span id="location-span" style="position:relative; float:left;">In <%= @folder.title %></span>
<div id="entry-meta" class="meta-info">
<i class="icon-ok icons" id="save-entry"></i>
<i class="icon-remove icons" id="close" style="margin-left:10px"></i>
</div>
</div>
<div id="entry-create-partial" class="contain-entry">
<div id="title-create-partial" class="title-partial" name="title" contenteditable="true" data-placeholder='Title it' style="color:black"></div>
<div id="meta-popup"><button type="button" class="btn" id="nested-button">Create Nested Entry</button></div>
<div id="content-create-partial" class="content-partial" name="content" contenteditable="true" data-placeholder='Write anything' style="color:gray"></div>
</div>
</div>

<div id="container-edit" class="entry-window">
<span id="location-span" style="position:relative; float:left;">In <%= @folder.title %></span>
<div id="entry-meta" class="meta-info">
<button type="button" id="save-edit" class="btn">Save</button>
<button type="button" class="btn" id="close-edit"><i class="icon-remove" id="entry-cancel-x close-edit"></i>Cancel</button>
</div>
<div id="entry-edit-partial" class="contain-entry">
<div id="title-edit-partial" class="title-partial" name="title" contenteditable="true" style="color:black"></div>
<div id="content-edit-partial" class="content-partial" name="content" contenteditable="true" style="color:gray"></div>
</div>
</div>

<div id="right-panel">
<div id="top" class="top">
<h3><%= @folder.title %></h3>
<ul id="inner-list">
<button class="btn" id="journal-create-button">New Journal</button>
<div id="create-journal-drop">
<form action="/folders" method="post">
<%= hidden_field_tag :user_id, current_user.id %>
<%= hidden_field_tag :parent_id, @folder.id %>
<h3 id="journal-create-partial">New Sub-Journal</h3>
<input type="text" id="titleinput" name="title" placeholder="Title it"></input>
<button type="submit" class="md-close folder-create" id="folder-create">Create</button>
</form>
</div>
<button class="btn" id="entry-button">New Entry</button>
<button type="button" id="delete-button" class="btn"><i class="icon-remove"></i></button>
</ul>
</div>
<% if @folder.submissions.count > 0 %>
<svg id="submission-circles">
<circle></circle>
<circle></circle>
<circle></circle>
<circle></circle>
</svg>
<% else %>
<h2>It's quiet in here. Create a journal entry or sub-journal to get started!</h2>
<% end %>
</div>
</div>

正如我所说,我想重新加载整个部分,以便反射(reflect)新数据,而无需用户执行整页刷新。

我在文件夹 Controller 中创建了一个新操作,如下所示:

def ajax_load_events
respond_to do |format|
format.js
format.html
end
end

Ajax_load_events.js:

$("#panel-container").replace_html('<%= escape_javascript(render(:partial => "contents", :locals => {:folder => @folder})).html_safe %>');

最后,我的 AJAX 调用:

$("#save-entry").click(function(){
$.ajax({
type: "POST",
url: "/submissions",
dataType: "json",
data: {title: $("#title-create-partial").text(), content: $("#content-create-partial").text(), folder_id: <%= @folder.id %>},
complete: function(){
$.get("/ajax_load_events/", {folder: <%= @folder.id %>}, null, "script");
}
});
})

这是我的routes.rb中的路线:

get "/ajax_load_events(.:format)" => "folders#ajax_load_events"

最佳答案

您可能没有正确定义用户能力。尝试将以下行之一添加到功能文件的底部:

can :ajax_load_events, Folder

它允许用户执行特定的 Controller 操作。

或者:

can :manage, Folder

它允许用户对资源执行各种操作(不仅仅是 CRUD)。

关于javascript - 在 ajax 回调上重新加载 Rails 部分,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/18564409/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com