0
我正在學習使用haml的padrino,並在使用遠程表單時遇到這種奇怪的行爲。用於創建元素的部分像魅力一樣工作,但更新後使用的部分以明文形式呈現。我敢肯定它是一個菜鳥的錯誤,但我似乎無法找到它。Padrino遠程js形式呈現爲文本而不是js
#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");
並點擊編輯按鈕後,我得到一個白頁:alert(「ok」);爲什麼update.js.haml頁面沒有呈現爲遠程js?
的WEBrick日誌:
DEBUG - TEMPLATE (0.0003s) /habit/update.js
DEBUG - PUT (0.0170s) /habit/update/1.js - 200 OK