如果format.html存在,则respond_to不使用format.js

时间:2011-01-27 20:15:32

标签: javascript ruby-on-rails respond-to

使用respond_to时,如果HTML响应不存在,我的AJAX调用仅调用javascript响应。

我有以下javascript用于提交就地编辑操作:

$(".eip").editable("/surveys", {
  name   : 'survey[name]',
  select : true,
  event  : 'edit',
  submit : 'Save',
  cancel : 'cancel',
  cssclass : "editable",
  onblur : 'ignore',
  onedit : function() { $(".eip_desc").hide(); },
  onreset : function() { $(".eip_desc").show(); },
  onsubmit : function() { $(".eip_desc").show(); }
});

然后我有以下Survey控制器方法:

class SurveysController < ApplicationController
  def create
    @survey = Survey.new(params[:survey])    

    if @survey.save
      respond_to do |format|
        format.html { redirect_to surveys_path, :notice => "Survey created!" }
        format.js
      end
    else
      render :action => :new
    end
  end
end

如果我删除了format.html行,那么format.js就会响应。但是如果我在那里留下format.html,那么当我通过editable javascript位提交时,整个页面会呈现。

我正在为这个应用程序运行Rails 3.0.3。

1 个答案:

答案 0 :(得分:1)

来自docs

  

(String)方法:使用时的方法   提交已编辑的内容。默认是   POST。您最有可能想要使用POST   或PUT。 PUT方法兼容   轨。

尝试传递方法:“put”