Specified 'mysql2' for database adapter, but the gem is not loaded. Add `gem 'mysql2'` to your Gemfi
2016-01-21
controller 的 convention 是 PagesController,而不是 PageController
2015-11-03
Peter老師講的太好了 T.T 筆記、聲音、課程設(shè)置都那么棒 這樣的高質(zhì)量教學(xué)在國內(nèi)太少了..!!
此套rails入門課程質(zhì)量非常高 我用來復(fù)習(xí)rails知識 一天之內(nèi)跟著peter老師做完了
如果Peter老師出付費學(xué)習(xí)視頻我一定也要報名學(xué)習(xí)!!!支持老師繼續(xù)出優(yōu)秀教學(xué)視頻 ;-)
此套rails入門課程質(zhì)量非常高 我用來復(fù)習(xí)rails知識 一天之內(nèi)跟著peter老師做完了
如果Peter老師出付費學(xué)習(xí)視頻我一定也要報名學(xué)習(xí)!!!支持老師繼續(xù)出優(yōu)秀教學(xué)視頻 ;-)
2015-10-28
@happypeter 你好
我的環(huán)境是centos7 ruby rails nodejs 都已經(jīng)安裝好;使用rails s 啟動服務(wù)器,報下面這個錯
Specified 'mysql2' for database adapter, but the gem is not loaded. Add `gem 'mysql2'` to your Gemfile (and ensure its version is at the minimum required by ActiveRecord).
嘗試安裝mysql,但是centos中已經(jīng)將mysql改為使用mariadb,所以始終不能解決這個
我的環(huán)境是centos7 ruby rails nodejs 都已經(jīng)安裝好;使用rails s 啟動服務(wù)器,報下面這個錯
Specified 'mysql2' for database adapter, but the gem is not loaded. Add `gem 'mysql2'` to your Gemfile (and ensure its version is at the minimum required by ActiveRecord).
嘗試安裝mysql,但是centos中已經(jīng)將mysql改為使用mariadb,所以始終不能解決這個
2015-09-16
@luodingzi change 'gem 'mysql2'' to 'gem 'mysql2', '~> 0.3.20''.
2015-09-16
Specified 'mysql2' for database adapter, but the gem is not loaded. Add `gem 'mysql2'` to your Gemfile (and ensure its version is at the minimum required by ActiveRecord).出現(xiàn)這個錯誤,但是Gemfile里面已經(jīng)有了 gem 'mysql2'。
2015-09-15
after adding:
Private
def issue_params
params.require(:issue).permit(:title, :content)
end
I still have the ForbiddenAttributeError
I need to change def create to as shown below in order to make it work
def create
@issue = Issue.new(issue_params)
@issue.save
redirect_to :root
end
Private
def issue_params
params.require(:issue).permit(:title, :content)
end
I still have the ForbiddenAttributeError
I need to change def create to as shown below in order to make it work
def create
@issue = Issue.new(issue_params)
@issue.save
redirect_to :root
end
2015-09-07