質問編集履歴
2
文全体の修正
test
CHANGED
@@ -1 +1 @@
|
|
1
|
-
rails devise
|
1
|
+
rails devise ヘルパーメソッド current_userが使えない
|
test
CHANGED
@@ -1,32 +1,30 @@
|
|
1
|
-
deviseを導入すると使えるようになるヘルパーメソッドのcurrent_user
|
1
|
+
deviseを導入すると使えるようになるヘルパーメソッドのcurrent_userがなぜか使えなくなってしまいました。
|
2
2
|
|
3
|
-
|
3
|
+
別のページではcurrent_userや他のヘルパーメソッドが使えていたのですが、このviewだとNomethodErrorとなってしまいます汗
|
4
4
|
|
5
|
-
c
|
5
|
+
またエラーコードはActionView::Template::Errorとなっておりcurrent_userが存在していない?という風になってしまいます、
|
6
6
|
|
7
|
-
|
7
|
+
このviewだとヘルパーメソッドが適用されない範囲にあるということなのかと思いコントローラーで@current_user = current_userとしてインスタンス変数に入れてみたのですが特に変わらずでした汗
|
8
8
|
|
9
9
|
|
10
10
|
|
11
|
-
|
11
|
+
### 該当のview
|
12
12
|
|
13
13
|
```ここに言語を入力
|
14
14
|
|
15
|
-
@current_userを使ってみたviewのページ
|
16
15
|
|
17
16
|
|
17
|
+
<% unless current_user?(@user) %>
|
18
18
|
|
19
|
-
<% unless @current_user?(@user) %>
|
20
|
-
|
21
|
-
<div id="follow_form">
|
19
|
+
<div id="follow_form">
|
22
20
|
|
23
21
|
<% if current_user.following?(@user) %>
|
24
22
|
|
25
|
-
<%= render '
|
23
|
+
<%= render 'unfollow' %>
|
26
24
|
|
27
25
|
<% else %>
|
28
26
|
|
29
|
-
<%= render '
|
27
|
+
<%= render 'follow' %>
|
30
28
|
|
31
29
|
<% end %>
|
32
30
|
|
@@ -34,70 +32,38 @@
|
|
34
32
|
|
35
33
|
<% end %>
|
36
34
|
|
35
|
+
```
|
36
|
+
|
37
|
+
|
38
|
+
|
39
|
+
### エラ-コード
|
40
|
+
|
41
|
+
```ここに言語を入力
|
42
|
+
|
43
|
+
ActionView::Template::Error (undefined method `current_user?' for #<#<Class:0x00007f89eddc9078>:0x00007f89fc7ba588>
|
44
|
+
|
45
|
+
Did you mean? current_user
|
46
|
+
|
47
|
+
current_page?):
|
48
|
+
|
49
|
+
1: <% unless current_user? %>
|
50
|
+
|
51
|
+
2: <div id="follow_form">
|
52
|
+
|
53
|
+
3: <% if current_user.following?(@user) %>
|
54
|
+
|
55
|
+
4: <%= render 'unfollow' %>
|
56
|
+
|
57
|
+
|
58
|
+
|
59
|
+
app/views/mypages/_follow_form.html.erb:1:in `_app_views_mypages__follow_form_html_erb__3920905308085950541_70115311677300'
|
60
|
+
|
61
|
+
app/views/mypages/show.html.erb:12:in `_app_views_mypages_show_html_erb___2425777192918927473_70115311605620'
|
62
|
+
|
37
63
|
|
38
64
|
|
39
65
|
```
|
40
66
|
|
41
|
-
```ここに言語を入力
|
42
|
-
|
43
|
-
@current_userを定義したコントローラー画面
|
44
67
|
|
45
68
|
|
46
|
-
|
47
|
-
class MypagesController < ApplicationController
|
48
|
-
|
49
|
-
before_action :authenticate_user!, only: [:following, :followers]
|
50
|
-
|
51
|
-
|
52
|
-
|
53
|
-
def index
|
54
|
-
|
55
|
-
|
69
|
+
![イメージ説明](dbf49e5232cf10ca91a332b664576996.jpeg)
|
56
|
-
|
57
|
-
end
|
58
|
-
|
59
|
-
|
60
|
-
|
61
|
-
def show
|
62
|
-
|
63
|
-
@user = User.find(params[:id])
|
64
|
-
|
65
|
-
@photoposts = @user.photoposts
|
66
|
-
|
67
|
-
@current_user = current_user
|
68
|
-
|
69
|
-
end
|
70
|
-
|
71
|
-
|
72
|
-
|
73
|
-
def following
|
74
|
-
|
75
|
-
@title = "フォロー"
|
76
|
-
|
77
|
-
@user = User.find(params[:id])
|
78
|
-
|
79
|
-
@users = @user.following
|
80
|
-
|
81
|
-
render 'show_follow'
|
82
|
-
|
83
|
-
end
|
84
|
-
|
85
|
-
|
86
|
-
|
87
|
-
def followers
|
88
|
-
|
89
|
-
@title = "フォロワー"
|
90
|
-
|
91
|
-
@user = User.find(params[:id])
|
92
|
-
|
93
|
-
@users = @user.followers
|
94
|
-
|
95
|
-
render 'show_follow'
|
96
|
-
|
97
|
-
end
|
98
|
-
|
99
|
-
end
|
100
|
-
|
101
|
-
|
102
|
-
|
103
|
-
```
|
1
タイトルの変更 オーバーライドについて
test
CHANGED
@@ -1 +1 @@
|
|
1
|
-
rails devise
|
1
|
+
rails devise オーバーライドの仕方が知りたい
|
test
CHANGED
@@ -3,6 +3,10 @@
|
|
3
3
|
試しに@current_userというインスタンス変数を作ってそこにcurrent_userを入れてみたら、
|
4
4
|
|
5
5
|
curren_userのNomethodErrorは無くなったのですが、<div>タグでSyntaxErrorとなってしまいます。
|
6
|
+
|
7
|
+
deveiseのコントローラーをオーバーライドすれば使用できるかなと思ったのですが、良さそうな資料を見つけることができませんでした。
|
8
|
+
|
9
|
+
|
6
10
|
|
7
11
|
|
8
12
|
|