3

我有js文件:

$('#some_btn').click(function() {    

    var valuesToSubmit = $('#some_form').serialize();
    var url = $('#some_form').attr('action');

    console.log("VALUE: " + valuesToSubmit);
    console.log("URL: " + search_url);

    $.ajax({
        type: 'POST',
        url: url, //sumbits it to the given url of the form
        data: valuesToSubmit,
        dataType: "JSON",
        success: function(data) {

            console.log("saved");
            console.log(data);

        }
    });

    return false;
});

响应的控制器动作:

def some_action()

  ...

  @response = {resp: "ack"}

  respond_with @response do |format|
    format.json { render :layout => false, :text => @response }
  end

end

路线:

post '/abc/some_action', to: 'abc#some_action'

但执行后我收到:

ArgumentError
Nil location provided. Can't build URI.


@response = {resp: "ack"}

respond_with @response do |format| # <--- Error here
  format.json { render :layout => false, :text => @response }
end
4

2 回答 2

4

respond_with期望一个 AR 对象,从中可以推断出路线。

更改为:

@response = {resp: "ack"}

respond_to do |format|
  format.json { render json: @response }
  format.js   { render json: @response }
end

另一种方法是强制控制器只为特定操作呈现 json。很奇怪,因为这意味着您无法发送正确的请求。

但在这种情况下:

respond_to :json, :only => :some_action

在你的行动中:

render json: @response
于 2013-09-24T12:35:05.767 回答
0

在您的控制器中添加此行

class YourController < ...
respond_to :json

接着

@response = {resp: "ack"}
respond_with(@response)
于 2013-09-24T12:43:34.927 回答