0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 5 years have passed since last update.

今日の進捗

Posted at

###初めまして
今日から自身のprogrammingの日記をつけようと思います。

###今日学んだこと
####今日はprogateのRuby On Rails学習コースをしました。

  • 変数session...
  • getとpost
  • applicationコントローラー
  • to_iメソッド

######変数session
ページを移動してもユーザー情報を保持し続けるために、sessionという特殊な変数を用います。sessionに代入された値は、ブラウザ(InternetExplorer, GoogleChrome等)に保存されます。sessionに値を代入すると、ブラウザはそれ以降のアクセスでsessionの値をRailsに送信します。

######getとpost
get : データベースを変更しない場合
post : データベースを変更する場合、sessionの値を変更する場合

######applicationコントローラー
applicationコントローラーで定義したメソッドは各コントローラにbefore_action:に指定すると全てのアクションの前に実行することができます。また、onlyを使うことでアクションを限定できます。

######to_iメソッド
文字列を数値に帰るメソッド。

0
0
1

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?