NoMethodError (undefined method `upload' for nil:NilClass):の解決法。


AWSのS3の導入過程でで画像を投稿すると、上記のエラーが。

環境変数のキーを確認しても間違いは無かったです。

def create
    @item = Item.new(item_params)
    if @item.save   #<=ここでエラーが出ます
      redirect_to root_path
    else
      render action: :new
    end
  end

エラーが文をコピーして検索すると、同じようなエラーの記述がありました。環境変数を使えるようにするためのコマンドsource ~/.zshrcを忘れていただけでした。