質問編集履歴
1
コントローラーの記述追加
test
CHANGED
File without changes
|
test
CHANGED
@@ -16,7 +16,7 @@
|
|
16
16
|
|
17
17
|
### 該当のソースコード
|
18
18
|
|
19
|
-
|
19
|
+
○ビューファイル
|
20
20
|
|
21
21
|
```ruby
|
22
22
|
|
@@ -35,6 +35,26 @@
|
|
35
35
|
<div class="search-button"><%= f.submit '検索',{class: 'submit-button'} %></div>
|
36
36
|
|
37
37
|
<% end %>
|
38
|
+
|
39
|
+
```
|
40
|
+
|
41
|
+
○コントローラー記述
|
42
|
+
|
43
|
+
```ruby
|
44
|
+
|
45
|
+
def index
|
46
|
+
|
47
|
+
@genres = Genre.all
|
48
|
+
|
49
|
+
@prefectures = Prefecture.all
|
50
|
+
|
51
|
+
@tags = Tag.all
|
52
|
+
|
53
|
+
@p = Shop.ransack(params[:q])
|
54
|
+
|
55
|
+
@results = @p.result(distinct: true)
|
56
|
+
|
57
|
+
end
|
38
58
|
|
39
59
|
```
|
40
60
|
|