-1

在我的 Rails 应用程序中,我将 ajax 请求设为 $.ajaxSetup({ url: '/get_paypal_button' });

      var dataToSend = { fundraiser_id: <%= @fundraiser.id %>,  
        amount:  $("#amount").val(),
        currency: $('#donor_donation_currency').val(),
        comment: $('#donor_donation_comment').val(),
        anonymous: $("#donor_donation_anonymous").is(":checked"),
        donor_email: $('#email').val(),
        donor_name: $('#name').val(),
        donor_city: $('#city').val(),
        donor_country: $('#country').val() };

      $.ajax({
        type: "POST",
        dataType:'JSON',
        async: true,
        data:dataToSend,
        success: function(json){
          $('#id_amount').val(json.amount);
          $('#custom_content').val(json.custom);
        },
        error:function (xhr, ajaxOptions, thrownError){
          console.dir(xhr);
          console.dir(thrownError);
        }
      });

在控制器中,我将数据处理为

def get_paypal_button
  @fundraiser = Fundraiser.where(:id => params[:fundraiser_id]).last
  if params[:currency] == 'INR'
         amount_in_sgd = params[:amount].to_f/@fundraiser.sgd_to_inr.to_f
  elsif params[:currency] == 'USD'
         amount_in_sgd = params[:amount].to_f*@fundraiser.usd_to_sgd.to_f
  else
         amount_in_sgd = params[:amount].to_f
  end

  puts '----------finding donor-------------'
  @donor = Donor.find_or_initialize_by_email(params[:donor_email])
  @donor.update_attributes(:name => params[:donor_name], :city => params[:donor_city], :country => params[:donor_country])
  custom = @donor.id.to_s + "::" + params[:anonymous].to_s + "::" + params[:comment].to_s

  @hash = {:amount => amount_in_sgd, :custom => custom}.to_json
  respond_with(@hash) do |format|
    format.json { render :json =>  @hash }
  end

结尾

当我使用调试器并获取它给出的@hash 的值时(这是正确的)

"{\"amount\":15.0,\"custom\":\"2::false::\"}"

但是ajax请求正在执行我编写的代码以防出错并且它得到空响应。

我已经尝试了一切并且完全一无所知,因为几天前类似的代码正在运行。

4

1 回答 1

0

可能format未按预期设置:

检查Accepts header来自浏览器的作为 Ajax 调用的一部分。您可以在 Firebug 的网络选项卡中看到它。

或者转储format到日志并检查它。

于 2012-04-15T18:26:07.790 回答