0

私は padrino を haml で使用することを学んでおり、リモートフォームで作業しているときにこの奇妙な動作が発生します。要素の作成に使用されるパーシャルは魅力のように機能しますが、更新後に使用されるパーシャルはプレーンテキストでレンダリングされます。私はそれが新人の間違いだと確信していますが、私はそれを見つけることができないようです.

#user.rb
get :show, :with => :id do
    @user = User.get(params[:id].to_i) #REWRITE
    @posts = @user.posts
    session[:user_id] = @user.id
    render 'user/show'
end

#post.rb
  put :update, :with => :id, :provides => :js do
    @post = post.first(:id => params[:post][:id].to_i, :user_id => session[:user_id].to_i)
    @post.attributes(:name => params[:post][:name], :up => params[:post][:up], 
                      :down => params[:post][:down])
    if @post.save
      render 'post/update'
    end
  end

#show.haml
#show
  .user
    .title= link_to @user.login, url_for(:user, :show, :id => @user.id)
    .date= time_ago_in_words(@user.created || Time.now) + ' ago'
    .password= @user.password
  #posts= partial 'post/list', :locals => { :posts => @user.posts }

#_post.haml
.post{:id => "post#{post.id}"}
  .name= post.name
  .date= time_ago_in_words(post.created || Time.now) + ' ago'
  - if post.up
    .up + 
  - if post.down 
    .down -
  = link_to "(x)", url(:post, :destroy, :id => post.id, :format => :js, :method => 'delete'), :confirm => "Sure?", :remote => true
  = link_to "(e)", url(:post, :edit, :id => post.id, :format => :js), :remote => true

#_edit.haml
- form_for :post, url(:post, :update, :id => @post.id, :format => :js), :remote => true, :method => 'put', :id => 'post_edit_form' do |f|
  = partial 'post/form', :locals => {:f => f}
  = f.text_field :id, :hidden => true
  = f.submit "Edit", :class => 'button'

#update.js.haml
:plain
  alert("ok");

編集ボタンをクリックすると、次のような白いページが表示されます。update.js.haml ページがリモート js としてレンダリングされないのはなぜですか?

WEBrick ログ:

DEBUG -  TEMPLATE (0.0003s) /habit/update.js
DEBUG -       PUT (0.0170s) /habit/update/1.js - 200 OK
4

1 に答える 1