我在下面有这段代码。我正在使用 AJAX 调用,然后我需要读取 json 作为响应。在我的控制器中,我有这个:
def create
# some code
respond_to do |format|
format.html { redirect_to 'index' }
format.json { render :json => {:test =>"test"} }
end
end
我如何阅读 json 响应?我应该将javascript代码放在哪个文件中?
$('...').live('ajax:success',function(data, status, xhr){
console.log(data);
console.log(status);
console.log(xhr);
});
我在 application.js 文件中尝试过,但它不起作用