0
1

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.

Railsチュートリアルでつまづいた点 まとめ

Last updated at Posted at 2019-06-23

概要

Railsチュートリアル(https://railstutorial.jp/chapters/sign_up?version=5.1)
でつまづいた点をまとめます。

#1.formのエラー表示が崩れる
下記画像みたいにinputのエラーを表すデザインが変。

スクリーンショット 2019-06-23 21.07.24.png

下記scssが原因だった!ここだけコメントアウトしました。

app/assets/stylesheets/scaffolds.scss
.field_with_errors {
  padding: 2px;
  background-color: red;
  display: table;
}

#2.will_paginateをインストールするとエラー表示される件【Railsチュートリアル第10章】
https://qiita.com/KazuhoE/items/a08cd98b7a5430c0fa71
この方の記事を参考にしてうまく解決しました。バグみたい

バグっぽいですね

#3.チュートリアル図11.2でエラー
チュートリアル図11.2が表示されず以下エラーにhostもあってはずだしなんで?・・・rails serverを再起動すると治りました。再起動大事!

ArgumentError in Users#create

edit account activation url(@user.activation token, email: @user.email)
Missing host to link to! Please provide the :host parameter, set default_url_options[:host], or set :only_path to true
0
1
0

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
1

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?