1

私の Rails アプリでは、ユーザーが新しいブログ投稿を作成できるフォルダーを持っています。ユーザーが新しい投稿を作成するときに、すべてのフォルダーの投稿を含む部分を更新したいと思います。パーシャルを再度呼び出して置き換えるだけのアクションをフォルダーコントローラーで作成しようとしましたが、CanCan::AccessDenied 500 エラーが発生します。

私のindex.html.erbでは、これは私のフォルダへのリンクであり、部分的に表示されます:

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

ビューに読み込まれるパーシャルは次のとおりです。

    <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>

先ほど言ったように、ユーザーがページ全体を更新しなくても新しいデータが反映されるように、この部分全体をリロードしたいと思います。

次のようなフォルダーコントローラーに新しいアクションを作成しました。

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"
4

1 に答える 1