我在下面有这个代码。我正在使用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文件中尝试了但是它不起作用