0

我的问题是,在尝试处理名为“clients”的控制器中的更新操作时,我得到了一个不可接受的 406(我正在请​​求 HTML 而不是在处理 JSON)我的直觉是我的嵌套结构中缺少一些东西if 语句,因为这只发生在下面列出的嵌套进程之一的验证失败时。我已经浏览了我的代码并尝试了几种重构方法,但似乎无法绕过这个方法。希望一双新的眼睛能看到我看不到的东西。

def update
@client = Client.find(params[:id])



respond_to do |format|
if params[:save_contact]
    format.html { redirect_to "/clients/#{@client.id}/edit#tabs-3", :notice => 'Contact Saved!' }
    format.mobile { render :action => "edit", :notice => 'Contact Saved' }
    format.json { head :ok }
else
end
if params[:save_job]
    format.html { redirect_to "/clients/#{@client.id}/edit#tabs-6", :notice => 'Job Saved!' }
    format.mobile { render :action => "edit", :notice => 'Job Saved' }
    format.json { head :ok }

else
end




if @client.update_attributes(params[:client])
 @client.update_attribute(:branch_number, @client.branch.number)         

    if @client.wcrequested? && !@client.wcrequest_sent?
          @client.update_attribute(:wcstatus, "Pending")
          @client.update_attribute(:wcrequest_sent, "TRUE")
          @client.update_attribute(:wcresponse_sent, "FALSE")
          @client.update_attribute(:wcresponded, "FALSE")
          ClientsMailer.wcreq_recieved_corp(@client, current_user).deliver
          ClientsMailer.wcreq_recieved_branch(@client, current_user).deliver
    else
      format.html { render :action => "edit" }
      format.mobile { render :action => "edit" }
      format.json { render :json => @client.errors, :status => :unprocessable_entity }


    end

    if @client.wcstatus == "Denied"
           @client.update_attribute(:wcrequest_sent, "FALSE")
           @client.update_attribute(:wcrequested, "FALSE")
           ClientsMailer.wcreq_completed_corp(@client, current_user).deliver
           ClientsMailer.wcreq_completed_branch(@client, current_user).deliver
    else
    end

    if @client.wcresponded? && !@client.wcresponse_sent?
          @client.update_attribute(:wcresponse_sent, "TRUE")
          ClientsMailer.wcreq_completed_corp(@client, current_user).deliver
          ClientsMailer.wcreq_completed_branch(@client, current_user).deliver
    else
    end

    if params[:gpreq]
          @client.update_attribute(:gpstatus, "Pending GP Approval")
          ClientsMailer.gpreq_recieved_corp(@client, current_user).deliver
          ClientsMailer.gpreq_recieved_branch(@client, current_user).deliver
    else
    end
    if params[:gpreply]
          @client.update_attribute(:gpstatus, "GP Approval Completed")
          ClientsMailer.gpreq_completed_corp(@client, current_user).deliver
          ClientsMailer.gpreq_completed_branch(@client, current_user).deliver
   else
   end

    if @client.cred_requested? && !@client.cred_req_sent?
          @client.update_attribute(:cred_req_sent, "TRUE")
          ClientsMailer.credreq_recieved_corp(@client, current_user).deliver
          ClientsMailer.credreq_recieved_branch(@client, current_user).deliver
   else
   end
    if @client.cred_status == "Completed" && !@client.cred_rep_sent?
          @client.update_attribute(:cred_rep_sent, "TRUE")
          ClientsMailer.credreq_completed_corp(@client, current_user).deliver
          ClientsMailer.credreq_completed_branch(@client, current_user).deliver
  else
  end



      format.html { redirect_to edit_client_path(@client), :notice => 'Client was successfully updated!' }
      format.mobile { render :action => "edit", :notice => 'Client was successfully updated!' }
      format.json { head :ok }
      format.xml { render :action => "edit"}

else

      format.html { render :action => "edit" }
      format.mobile { render :action => "edit" }
      format.json { render :json => @client.errors, :status => :unprocessable_entity }
      format.xml { render :action => "edit"}


end
end
   end
4

2 回答 2

0

406 错误是由相关格式不可用或不适用引起的。

我建议您首先将操作减少到一个 respond_to 块并将您的业务逻辑移动到您的模型中。诸如此类的东西@client.update_attribute(:wcstatus, "Pending")不应该在控制器中,而是在验证下的模型中,然后调用 save 方法。

我怀疑您的 if else end 语句没有满足您的条件。BTW else 紧跟 end 是完全错误的。

不管怎样,把它剪下来,然后看看剩下的 yiu,然后一个一个地添加 onditions,直到你遇到问题,注意使用条件来设置局部变量并只保留一个使用局部变量进行重定向的 response_to 块ETC...

于 2012-09-26T12:16:15.370 回答
0

我想我明白了。format参数与其他参数不同:rails 使用 Accept Headers 和参数:format来确定是否使用 html、xml、json 或其他内容进行响应。所以我会说您不支持您尝试使用的所有格式,可能mobile是原因之一。

于 2012-09-25T17:30:03.800 回答