以下にこのコードがあります。私は 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 ファイルで試しましたが、動作しません