由於Ruby on Rails不像php有die; 可以直接在程式中停止,所以通常只能用像rails console做debug,不過pry gem可以設中斷點,或許是個debug不錯的工具。
只要在Gemfile加入:
gem ‘pry’
之後就可以在controller裡面加入:
binding.pry
就可以在console裡面輸入如
params的指令來debug
由於Ruby on Rails不像php有die; 可以直接在程式中停止,所以通常只能用像rails console做debug,不過pry gem可以設中斷點,或許是個debug不錯的工具。
只要在Gemfile加入:
gem ‘pry’
之後就可以在controller裡面加入:
binding.pry
就可以在console裡面輸入如
params的指令來debug