質問編集履歴

1

一部自分で解決できたので、エラー部分を修正しました。

2021/05/09 12:18

投稿

umino
umino

スコア54

test CHANGED
File without changes
test CHANGED
@@ -20,11 +20,11 @@
20
20
 
21
21
  <div v-for="r in res" :key="res.id">
22
22
 
23
- {{ r.images[Math.min(r.images.position)].image_path }}
23
+ {{ r.images[Math.min(Number(r.images.position))].image_path }}
24
24
 
25
25
  <!-- 期待する結果: "https://hoge.png" -->
26
26
 
27
- <!-- 実際の結果: NaN -->
27
+ <!-- 実際の結果: Cannot read property 'image_path' of undefined -->
28
28
 
29
29
  <hr>
30
30
 
@@ -106,7 +106,7 @@
106
106
 
107
107
  ```
108
108
 
109
- 上記で試してみたのですがNaN(非数)と表示されてしまい、思う結果が得られませんでした。
109
+ 上記で試してみたのですがCannot read property 'image_path' of undefinedエラーになってしまい、思う結果が得られませんでした。
110
110
 
111
111
  methodを定義すべきか(作成しなくて済むものか、作成しないと叶わないのか)も、勘所がわからず...
112
112