質問編集履歴

3

ソースの追加

2020/05/11 00:53

投稿

odaidai
odaidai

スコア5

test CHANGED
File without changes
test CHANGED
@@ -4,13 +4,23 @@
4
4
 
5
5
  と怒られます。
6
6
 
7
- 以下は「動画名動画のント、動画ファイル」のフォムをテーブルMoviesに保存する処理です。
7
+ 以下はフォームと表示それぞれのビュー、コントです。
8
8
 
9
9
  最初は画像ファイルのアップロードをしていたのでimgになったままで本当にすみません。ガタガタなコードもご容赦願います。
10
10
 
11
11
 
12
12
 
13
+
14
+
15
+
16
+
17
+ 1.アップロードフォームのビューとコントローラです。
18
+
19
+
20
+
13
- ```
21
+ ```
22
+
23
+
14
24
 
15
25
  <?= $this->Form->create($movie,['type'=>'file'])?>
16
26
 
@@ -131,3 +141,93 @@
131
141
 
132
142
 
133
143
  ```
144
+
145
+ 2.動画の表示のビューとコントローラです。
146
+
147
+ ```ここに言語を入力
148
+
149
+ //index.ctp アップロードした動画の一覧
150
+
151
+ <table>
152
+
153
+ <?php foreach ($movies as $movie): ?>
154
+
155
+ <?= $this->element('one_box',['movie'=>$movie])?>
156
+
157
+ <?php endforeach; ?>
158
+
159
+ </table>
160
+
161
+ ```
162
+
163
+ ```ここに言語を入力
164
+
165
+ //one_box.ctp エレメント 
166
+
167
+ <tr>
168
+
169
+
170
+
171
+ <td class="left-container">
172
+
173
+ <a href="<?= $this->request->getAttribute('webroot') ?>video/<?= $movie->img_name?>">
174
+
175
+ <video src="<?= $this->request->getAttribute('webroot') ?>video/<?= $movie->img_name?>"></video>
176
+
177
+ </a>
178
+
179
+ </td>
180
+
181
+
182
+
183
+ <td class="right-container">
184
+
185
+ <a href="<?= $this->request->getAttribute('webroot') ?>video/<?= $movie->img_name?>" class="movie-title">
186
+
187
+   <h4><strong><?= $movie->name?></strong></h4>
188
+
189
+   </a>
190
+
191
+     <p class="comment"><?= $movie->content?></p>
192
+
193
+ <p class="created">アップロード<?= $movie->created?></p>
194
+
195
+ <div id="delete">
196
+
197
+ <?= $this->Form->postLink(__('削除'), ['action' => 'delete', $movie->id], ['confirm' => __('削除します')]) ?>
198
+
199
+ </div>
200
+
201
+ </td>
202
+
203
+
204
+
205
+ </tr>
206
+
207
+
208
+
209
+ ```
210
+
211
+ ```ここに言語を入力
212
+
213
+
214
+
215
+ public function index(){
216
+
217
+
218
+
219
+ $movies=$this->paginate('Movies',[
220
+
221
+ 'order'=>['created'=>'desc'],
222
+
223
+ 'limit'=>'10'
224
+
225
+ ]);
226
+
227
+ $this->set(compact('movies'));
228
+
229
+
230
+
231
+ }
232
+
233
+ ```

2

余計なタグが混入していた

2020/05/11 00:53

投稿

odaidai
odaidai

スコア5

test CHANGED
File without changes
test CHANGED
@@ -49,10 +49,6 @@
49
49
  <?= $this->Form->end()?>
50
50
 
51
51
 
52
-
53
-
54
-
55
- </div>
56
52
 
57
53
 
58
54
 

1

日本語の問題

2020/05/10 11:24

投稿

odaidai
odaidai

スコア5

test CHANGED
@@ -1 +1 @@
1
- スマホでだけ動画をアップロードできない
1
+ スマホでのみ動画をアップロードできない
test CHANGED
File without changes