日韩av黄I国产麻豆传媒I国产91av视频在线观看I日韩一区二区三区在线看I美女国产在线I麻豆视频国产在线观看I成人黄色短片

歡迎訪問(wèn) 生活随笔!

生活随笔

當(dāng)前位置: 首頁(yè) >

Console Snacks[摘自Advanced Rails Recipes]

發(fā)布時(shí)間:2023/12/10 54 豆豆
生活随笔 收集整理的這篇文章主要介紹了 Console Snacks[摘自Advanced Rails Recipes] 小編覺(jué)得挺不錯(cuò)的,現(xiàn)在分享給大家,幫大家做個(gè)參考.

1. Write Console Methods

在~/.irbrc定義ActvieRecord::Base.connection.select_all方法

1.# ~/.railsrc2.def?sql(query)3.ActiveRecord::Base.connection.select_all(query)4.end1.# ~/.irbrc2.if?ENV['RAILS_ENV']3.load?File.dirname(__FILE__) +?'/.railsrc'4.end

這樣就可以在直接在script/console下面執(zhí)行sql查詢

1.$ script/console2.>> sql?'show databases'

2. Log to the console

ActiveRecord Logger

01.# ~/.railsrc02.def?loud_logger03.set_logger_to Logger.new(STDOUT)04.end05.?06.def?quiet_logger07.set_logger_to?nil08.end09.?10.def?set_logger_to(logger)11.ActiveRecord::Base.logger = logger12.ActiveRecord::Base.clear_active_connections!13.end

ActionPack Logger

view sourceprint?1.# ~/.railsrc2.require?'logger'3.Object.const_set(:RAILS_DEFAULT_LOGGER, Logger.new(STDOUT))

3. Play in the Sandbox

使用sandbox參數(shù)來(lái)啟動(dòng)script/console

1.script/console --sandbox

這樣所有的數(shù)據(jù)庫(kù)修改都會(huì)在退出console時(shí)被恢復(fù)

4. Access Helpers

直接調(diào)用helper方法

1.helper.pluralize(3,?'blind mouse')

調(diào)用自定義的helper方法

1.helper.extends BlogsHelper2.helper.archive_dates

轉(zhuǎn)載于:https://www.cnblogs.com/orez88/articles/1793422.html

總結(jié)

以上是生活随笔為你收集整理的Console Snacks[摘自Advanced Rails Recipes]的全部?jī)?nèi)容,希望文章能夠幫你解決所遇到的問(wèn)題。

如果覺(jué)得生活随笔網(wǎng)站內(nèi)容還不錯(cuò),歡迎將生活随笔推薦給好友。