语法错误,意外的tIDENTIFIER,期待keyword_end before_action:authenticate_user!除了:[:index,:show] ^

时间:2016-09-05 13:14:44

标签: ruby-on-rails

请我一直在尝试连接到我的本地主机,它给了我@title。这是我的代码如下:红线表示第3行验证。问题可能是什么

class MoviesController < ApplicationController
  before_action :set_movie, only: [:show, :edit, :update, :destroy]
  before_action :authenticate_user! except: [:index, :show]

2 个答案:

答案 0 :(得分:1)

这里你错过了一个','除了:[:index,:show]

应该如下所示。

class MoviesController < ApplicationController
  before_action :set_movie, only: [:show, :edit, :update, :destroy]
  before_action :authenticate_user!, except: [:index, :show]

答案 1 :(得分:0)

你错过了&#39;,&#39;在authenticate_user之后!所以替换此行

before_action :authenticate_user!, except: [:index, :show]