2008-09-29 63 views

回答

4

將此代碼添加到您的application.rb中的文件

before_filter :benchmark_log 

    def benchmark_log 
    File.open("request_log.txt","a") do |f| 
     f.puts request.method.to_s + " '" + request.request_uri + "', " + params.except(:action).except(:controller).inspect.gsub(/(^\{|\}$)/,"") 
    end 
    end 

然後你就可以通過瀏覽器訪問多個頁面,會話腳本將在您的應用程序根目錄

被寫入request_log.txt文件
相關問題