質問編集履歴

2

エラーメッセージが消えた

2021/03/29 07:04

投稿

nanako_azami
nanako_azami

スコア20

test CHANGED
File without changes
test CHANGED
@@ -307,9 +307,3 @@
307
307
  </HTML>
308
308
 
309
309
  ```
310
-
311
-
312
-
313
- このコードで実行するとダイアログでこのようなエラーが出ます。↓
314
-
315
- DataTables warning: table id=users - Requested unknown parameter 'id' for row 0, column 0. For more information about this error, please see http://datatables.net/tn/4

1

blade jquery エラーメッセージを追加しました

2021/03/29 07:04

投稿

nanako_azami
nanako_azami

スコア20

test CHANGED
File without changes
test CHANGED
@@ -53,3 +53,263 @@
53
53
 
54
54
 
55
55
  //以下略(実在しない情報なので問題ありません)
56
+
57
+
58
+
59
+
60
+
61
+ 追記
62
+
63
+
64
+
65
+ ```blade
66
+
67
+ <HTML>
68
+
69
+
70
+
71
+ <HEAD>
72
+
73
+
74
+
75
+ <script src="https://code.jquery.com/jquery-3.3.1.min.js"
76
+
77
+ integrity="sha256-FgpCb/KJQlLNfOu91ta32o/NMZxltwRo8QtmkMRdAu8=" crossorigin="anonymous">
78
+
79
+ </script>
80
+
81
+
82
+
83
+ <link rel="stylesheet"type="text/css"
84
+
85
+ href="https://cdn.datatables.net/1.10.24/css/jquery.dataTables.css">
86
+
87
+
88
+
89
+ <script type="text/javascript" charset="utf8"
90
+
91
+ src="https://cdn.datatables.net/1.10.24/js/jquery.dataTables.js">
92
+
93
+ </script>
94
+
95
+
96
+
97
+ <script>
98
+
99
+
100
+
101
+ $(document).ready(function() {
102
+
103
+
104
+
105
+ var jsonData = $('#hidden').val();
106
+
107
+
108
+
109
+ $('#users').DataTable(
110
+
111
+ {
112
+
113
+ 'data' :jsonData,
114
+
115
+
116
+
117
+ 'columns' :[
118
+
119
+ {data:"id",width:100},
120
+
121
+ {data:"name",width:100},
122
+
123
+ {data:"name_kana",width:100},
124
+
125
+ {data:"gender_id",width:100},
126
+
127
+ {data:"mail_address",width:100},
128
+
129
+ {data:"birthday",width:100},
130
+
131
+ {data:"birthplace",width:100},
132
+
133
+ {data:"blood_type",width:100},
134
+
135
+ {data:"staff_number",width:100},
136
+
137
+ ],
138
+
139
+
140
+
141
+ "language":{"url": "//cdn.datatables.net/plug-ins/1.10.16/i18n/Japanese.json"},
142
+
143
+
144
+
145
+ 'columnDefs': [
146
+
147
+ {
148
+
149
+ 'targets': 9,
150
+
151
+ 'width': '10px',
152
+
153
+ 'searchable': false,
154
+
155
+ 'orderable': false,
156
+
157
+ 'render': function (){
158
+
159
+ return '<input type="button" name="edit" value="変更">'
160
+
161
+ }
162
+
163
+ }
164
+
165
+ ],
166
+
167
+
168
+
169
+ });
170
+
171
+ });
172
+
173
+
174
+
175
+ function del_confirm(id){
176
+
177
+
178
+
179
+ if(window.confirm('この内容を削除しますか?')){// 「OK」時の処理開始 + 確認ダイアログの表示
180
+
181
+
182
+
183
+ window.location.href="/delete/"+id;
184
+
185
+
186
+
187
+ return true;
188
+
189
+
190
+
191
+ }// 「OK」時の処理終了
192
+
193
+ else{// 「キャンセル」時の処理開始
194
+
195
+
196
+
197
+ window.alert('キャンセルされました'); // 警告ダイアログを表示
198
+
199
+ return false;
200
+
201
+
202
+
203
+ }// 「キャンセル」時の処理終了
204
+
205
+
206
+
207
+ }
208
+
209
+
210
+
211
+ </script>
212
+
213
+
214
+
215
+ </HEAD>
216
+
217
+
218
+
219
+ <BODY>
220
+
221
+
222
+
223
+ <input id="hidden" type="hidden" value="{{$items}}">
224
+
225
+
226
+
227
+ <table id="users" class="display" style="width:100%">
228
+
229
+ <thead>
230
+
231
+ <tr>
232
+
233
+ <th>ID</th>
234
+
235
+ <th>名前</th>
236
+
237
+ <th>カナ</th>
238
+
239
+ <th>性別</th>
240
+
241
+ <th>メール</th>
242
+
243
+ <th>生年月日</th>
244
+
245
+ <th>都道府県</th>
246
+
247
+ <th>血液型</th>
248
+
249
+ <th>担当No</th>
250
+
251
+ <th></th>
252
+
253
+ <th></th>
254
+
255
+ </tr>
256
+
257
+ </thead>
258
+
259
+ <tbody>
260
+
261
+
262
+
263
+
264
+
265
+
266
+
267
+ </tbody>
268
+
269
+ <tfoot>
270
+
271
+ <tr>
272
+
273
+ <th>ID</th>
274
+
275
+ <th>名前</th>
276
+
277
+ <th>カナ</th>
278
+
279
+ <th>性別</th>
280
+
281
+ <th>メール</th>
282
+
283
+ <th>生年月日</th>
284
+
285
+ <th>都道府県</th>
286
+
287
+ <th>血液型</th>
288
+
289
+ <th>担当No</th>
290
+
291
+ <th></th>
292
+
293
+ <th></th>
294
+
295
+ </tr>
296
+
297
+ </tfoot>
298
+
299
+ </table>
300
+
301
+
302
+
303
+ </BODY>
304
+
305
+
306
+
307
+ </HTML>
308
+
309
+ ```
310
+
311
+
312
+
313
+ このコードで実行するとダイアログでこのようなエラーが出ます。↓
314
+
315
+ DataTables warning: table id=users - Requested unknown parameter 'id' for row 0, column 0. For more information about this error, please see http://datatables.net/tn/4