質問編集履歴
8
タブ変更
test
CHANGED
@@ -1 +1 @@
|
|
1
|
-
|
1
|
+
WEBページでのerrorについて
|
test
CHANGED
File without changes
|
7
追記
test
CHANGED
@@ -1 +1 @@
|
|
1
|
-
RUBY on railsでの
|
1
|
+
RUBY on railsでのerrorについて
|
test
CHANGED
@@ -1,81 +1,3 @@
|
|
1
|
-
```ここに言語を入力
|
2
|
-
|
3
|
-
|
4
|
-
|
5
|
-
|
6
|
-
|
7
|
-
class BaseInformationsController < ApplicationController
|
8
|
-
|
9
|
-
before_action :authorize_baseinfo
|
10
|
-
|
11
|
-
|
12
|
-
|
13
|
-
private
|
14
|
-
|
15
|
-
|
16
|
-
|
17
|
-
def initialize_obj
|
18
|
-
|
19
|
-
@arg = {
|
20
|
-
|
21
|
-
obj: BaseInformation,
|
22
|
-
|
23
|
-
url: base_infos_url,
|
24
|
-
|
25
|
-
name: '基礎情報',
|
26
|
-
|
27
|
-
csv_file_name: 'base_infos.csv',
|
28
|
-
|
29
|
-
tlf_file_name: 'base_infos.tlf',
|
30
|
-
|
31
|
-
pdf_file_name: 'base_infos.pdf',
|
32
|
-
|
33
|
-
join_cond: '',
|
34
|
-
|
35
|
-
select_cond: 'base_infos.*',
|
36
|
-
|
37
|
-
order_cond: 'base_infos.code'
|
38
|
-
|
39
|
-
}
|
40
|
-
|
41
|
-
end
|
42
|
-
|
43
|
-
|
44
|
-
|
45
|
-
def set_master_with_code
|
46
|
-
|
47
|
-
@target_obj.joins(
|
48
|
-
|
49
|
-
''
|
50
|
-
|
51
|
-
).where(base_infos: { id: params[:id] }).select('base_infos.*').first
|
52
|
-
|
53
|
-
end
|
54
|
-
|
55
|
-
|
56
|
-
|
57
|
-
def master_params
|
58
|
-
|
59
|
-
params.require(:base_information).permit(:code, :name, :furigana, :abbrev, :postal_code, :address1, :address2,
|
60
|
-
|
61
|
-
:tel, :fax, :email, :url, :created_by, :updated_by)
|
62
|
-
|
63
|
-
end
|
64
|
-
|
65
|
-
|
66
|
-
|
67
|
-
def set_report_info(item, row); end
|
68
|
-
|
69
|
-
|
70
|
-
|
71
|
-
def authorize_baseinfo
|
72
|
-
|
73
|
-
authorize policy_scope(BaseInfo)
|
74
|
-
|
75
|
-
end
|
76
|
-
|
77
|
-
end
|
78
|
-
|
79
1
|
```環境は以下の通りです。
|
80
2
|
|
81
3
|
Rails 6.0.3.2
|
@@ -85,9 +7,3 @@
|
|
85
7
|
RailsでWEBページを開発中なのですが、画像のようなエラーが発生しました。
|
86
8
|
|
87
9
|
調べてみると、以下のようなページが出てくるのですが、いまいち記載内容が理解できずどういった原因があるか分かっていません。。。
|
88
|
-
|
89
|
-
https://qiita.com/imotan/items/c73fab5ee230114a08b6
|
90
|
-
|
91
|
-
原因に見当がつく方いましたらアドバイスお願い致します。
|
92
|
-
|
93
|
-
![![イメージ説明](cfd3331ac15f1f420008ed282f0eb58c.png)](d2de755aa1507ab0d878ff16177487cf.png)
|
6
削除された内容の復元を行いました
test
CHANGED
@@ -1 +1 @@
|
|
1
|
-
|
1
|
+
RUBY on railsでのuninitialized constant について
|
test
CHANGED
@@ -1,3 +1,93 @@
|
|
1
|
+
```ここに言語を入力
|
2
|
+
|
3
|
+
|
4
|
+
|
5
|
+
|
6
|
+
|
7
|
+
class BaseInformationsController < ApplicationController
|
8
|
+
|
9
|
+
before_action :authorize_baseinfo
|
10
|
+
|
11
|
+
|
12
|
+
|
13
|
+
private
|
14
|
+
|
15
|
+
|
16
|
+
|
17
|
+
def initialize_obj
|
18
|
+
|
19
|
+
@arg = {
|
20
|
+
|
21
|
+
obj: BaseInformation,
|
22
|
+
|
23
|
+
url: base_infos_url,
|
24
|
+
|
25
|
+
name: '基礎情報',
|
26
|
+
|
27
|
+
csv_file_name: 'base_infos.csv',
|
28
|
+
|
29
|
+
tlf_file_name: 'base_infos.tlf',
|
30
|
+
|
31
|
+
pdf_file_name: 'base_infos.pdf',
|
32
|
+
|
33
|
+
join_cond: '',
|
34
|
+
|
35
|
+
select_cond: 'base_infos.*',
|
36
|
+
|
37
|
+
order_cond: 'base_infos.code'
|
38
|
+
|
39
|
+
}
|
40
|
+
|
41
|
+
end
|
42
|
+
|
43
|
+
|
44
|
+
|
45
|
+
def set_master_with_code
|
46
|
+
|
47
|
+
@target_obj.joins(
|
48
|
+
|
49
|
+
''
|
50
|
+
|
51
|
+
).where(base_infos: { id: params[:id] }).select('base_infos.*').first
|
52
|
+
|
53
|
+
end
|
54
|
+
|
55
|
+
|
56
|
+
|
57
|
+
def master_params
|
58
|
+
|
59
|
+
params.require(:base_information).permit(:code, :name, :furigana, :abbrev, :postal_code, :address1, :address2,
|
60
|
+
|
61
|
+
:tel, :fax, :email, :url, :created_by, :updated_by)
|
62
|
+
|
63
|
+
end
|
64
|
+
|
65
|
+
|
66
|
+
|
67
|
+
def set_report_info(item, row); end
|
68
|
+
|
69
|
+
|
70
|
+
|
71
|
+
def authorize_baseinfo
|
72
|
+
|
73
|
+
authorize policy_scope(BaseInfo)
|
74
|
+
|
75
|
+
end
|
76
|
+
|
77
|
+
end
|
78
|
+
|
1
79
|
```環境は以下の通りです。
|
2
80
|
|
81
|
+
Rails 6.0.3.2
|
82
|
+
|
83
|
+
ruby 2.6.3
|
84
|
+
|
85
|
+
RailsでWEBページを開発中なのですが、画像のようなエラーが発生しました。
|
86
|
+
|
87
|
+
調べてみると、以下のようなページが出てくるのですが、いまいち記載内容が理解できずどういった原因があるか分かっていません。。。
|
88
|
+
|
89
|
+
https://qiita.com/imotan/items/c73fab5ee230114a08b6
|
90
|
+
|
3
|
-
|
91
|
+
原因に見当がつく方いましたらアドバイスお願い致します。
|
92
|
+
|
93
|
+
![![イメージ説明](cfd3331ac15f1f420008ed282f0eb58c.png)](d2de755aa1507ab0d878ff16177487cf.png)
|
5
追記
test
CHANGED
@@ -1 +1 @@
|
|
1
|
-
|
1
|
+
あああああああああああああああ
|
test
CHANGED
File without changes
|
4
タグ追加
test
CHANGED
File without changes
|
test
CHANGED
File without changes
|
3
追記
test
CHANGED
File without changes
|
test
CHANGED
@@ -1,25 +1,3 @@
|
|
1
1
|
```環境は以下の通りです。
|
2
2
|
|
3
|
-
Rails 6.0.3.2
|
4
|
-
|
5
|
-
ruby 2.6.3
|
6
|
-
|
7
|
-
|
8
|
-
|
9
|
-
RailsでWEBページを開発中なのですが、画像のようなエラーが発生しました。
|
10
|
-
|
11
|
-
調べてみると、以下のようなページが出てくるのですが、いまいち記載内容が理解できずどういった原因があるか分かっていません。。。
|
12
|
-
|
13
|
-
|
14
|
-
|
15
|
-
https://qiita.com/imotan/items/c73fab5ee230114a08b6
|
16
|
-
|
17
|
-
|
18
|
-
|
19
|
-
|
20
|
-
|
21
|
-
|
3
|
+
ああああああああああああああああああああああああああああ
|
22
|
-
|
23
|
-
|
24
|
-
|
25
|
-
![![イメージ説明](cfd3331ac15f1f420008ed282f0eb58c.png)](d2de755aa1507ab0d878ff16177487cf.png)
|
2
追記
test
CHANGED
File without changes
|
test
CHANGED
@@ -1,83 +1,3 @@
|
|
1
|
-
```ここに言語を入力
|
2
|
-
|
3
|
-
|
4
|
-
|
5
|
-
|
6
|
-
|
7
|
-
class BaseInformationsController < ApplicationController
|
8
|
-
|
9
|
-
before_action :authorize_baseinfo
|
10
|
-
|
11
|
-
|
12
|
-
|
13
|
-
private
|
14
|
-
|
15
|
-
|
16
|
-
|
17
|
-
def initialize_obj
|
18
|
-
|
19
|
-
@arg = {
|
20
|
-
|
21
|
-
obj: BaseInformation,
|
22
|
-
|
23
|
-
url: base_infos_url,
|
24
|
-
|
25
|
-
name: '基礎情報',
|
26
|
-
|
27
|
-
csv_file_name: 'base_infos.csv',
|
28
|
-
|
29
|
-
tlf_file_name: 'base_infos.tlf',
|
30
|
-
|
31
|
-
pdf_file_name: 'base_infos.pdf',
|
32
|
-
|
33
|
-
join_cond: '',
|
34
|
-
|
35
|
-
select_cond: 'base_infos.*',
|
36
|
-
|
37
|
-
order_cond: 'base_infos.code'
|
38
|
-
|
39
|
-
}
|
40
|
-
|
41
|
-
end
|
42
|
-
|
43
|
-
|
44
|
-
|
45
|
-
def set_master_with_code
|
46
|
-
|
47
|
-
@target_obj.joins(
|
48
|
-
|
49
|
-
''
|
50
|
-
|
51
|
-
).where(base_infos: { id: params[:id] }).select('base_infos.*').first
|
52
|
-
|
53
|
-
end
|
54
|
-
|
55
|
-
|
56
|
-
|
57
|
-
def master_params
|
58
|
-
|
59
|
-
params.require(:base_information).permit(:code, :name, :furigana, :abbrev, :postal_code, :address1, :address2,
|
60
|
-
|
61
|
-
:tel, :fax, :email, :url, :created_by, :updated_by)
|
62
|
-
|
63
|
-
end
|
64
|
-
|
65
|
-
|
66
|
-
|
67
|
-
def set_report_info(item, row); end
|
68
|
-
|
69
|
-
|
70
|
-
|
71
|
-
def authorize_baseinfo
|
72
|
-
|
73
|
-
authorize policy_scope(BaseInfo)
|
74
|
-
|
75
|
-
end
|
76
|
-
|
77
|
-
end
|
78
|
-
|
79
|
-
|
80
|
-
|
81
1
|
```環境は以下の通りです。
|
82
2
|
|
83
3
|
Rails 6.0.3.2
|
1
ソース追加
test
CHANGED
File without changes
|
test
CHANGED
@@ -1,4 +1,84 @@
|
|
1
|
+
```ここに言語を入力
|
2
|
+
|
3
|
+
|
4
|
+
|
5
|
+
|
6
|
+
|
7
|
+
class BaseInformationsController < ApplicationController
|
8
|
+
|
9
|
+
before_action :authorize_baseinfo
|
10
|
+
|
11
|
+
|
12
|
+
|
13
|
+
private
|
14
|
+
|
15
|
+
|
16
|
+
|
17
|
+
def initialize_obj
|
18
|
+
|
19
|
+
@arg = {
|
20
|
+
|
21
|
+
obj: BaseInformation,
|
22
|
+
|
23
|
+
url: base_infos_url,
|
24
|
+
|
25
|
+
name: '基礎情報',
|
26
|
+
|
27
|
+
csv_file_name: 'base_infos.csv',
|
28
|
+
|
29
|
+
tlf_file_name: 'base_infos.tlf',
|
30
|
+
|
31
|
+
pdf_file_name: 'base_infos.pdf',
|
32
|
+
|
33
|
+
join_cond: '',
|
34
|
+
|
35
|
+
select_cond: 'base_infos.*',
|
36
|
+
|
37
|
+
order_cond: 'base_infos.code'
|
38
|
+
|
39
|
+
}
|
40
|
+
|
41
|
+
end
|
42
|
+
|
43
|
+
|
44
|
+
|
45
|
+
def set_master_with_code
|
46
|
+
|
47
|
+
@target_obj.joins(
|
48
|
+
|
49
|
+
''
|
50
|
+
|
51
|
+
).where(base_infos: { id: params[:id] }).select('base_infos.*').first
|
52
|
+
|
53
|
+
end
|
54
|
+
|
55
|
+
|
56
|
+
|
57
|
+
def master_params
|
58
|
+
|
59
|
+
params.require(:base_information).permit(:code, :name, :furigana, :abbrev, :postal_code, :address1, :address2,
|
60
|
+
|
61
|
+
:tel, :fax, :email, :url, :created_by, :updated_by)
|
62
|
+
|
63
|
+
end
|
64
|
+
|
65
|
+
|
66
|
+
|
67
|
+
def set_report_info(item, row); end
|
68
|
+
|
69
|
+
|
70
|
+
|
71
|
+
def authorize_baseinfo
|
72
|
+
|
73
|
+
authorize policy_scope(BaseInfo)
|
74
|
+
|
75
|
+
end
|
76
|
+
|
77
|
+
end
|
78
|
+
|
79
|
+
|
80
|
+
|
1
|
-
環境は以下の通りです。
|
81
|
+
```環境は以下の通りです。
|
2
82
|
|
3
83
|
Rails 6.0.3.2
|
4
84
|
|