创建与 Rails 请求分析器一起使用的脚本的最佳方法是什么?

发布于 2024-07-06 12:17:08 字数 83 浏览 7 评论 0原文

Rails scirpt script/performance/request 需要会话脚本,生成此会话脚本的最佳方法是什么?

The rails scirpt script/performance/request require a session script, what is the best way to generate this session script?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

可是我不能没有你 2024-07-13 12:17:08

将此代码添加到您的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文件中

Add this code to your application.rb file

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

Then you can visit several pages in your browser, and the session script will be written into the request_log.txt file in your applications root directory

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文