I’m trying to call a get API to populate an array with details and show it in a table in vue.js but the console throws this error
JavaScript
x
2
1
vue.runtime.esm.js?2b0e:619 [Vue warn]: Property or method "patient" is not defined on the instance but referenced during render. Make sure that this property is reactive, either in the data option, or for class-based components, by initializing the property. See: https://v2.vuejs.org/v2/guide/reactivity.html#Declaring-Reactive-Properties.
2
Here’s the code that I have written,
JavaScript
1
49
49
1
<template>
2
<div>
3
<table>
4
<thead>
5
<tr>
6
<th>UID</th>
7
<th>DATE</th>
8
</tr>
9
</thead>
10
<tbody>
11
<tr :for="patient in patients" :key="patient.uid">
12
<td>{{patient.uid}}</td>
13
</tr>
14
</tbody>
15
</table>
16
</div>
17
</template>
18
19
<script>
20
import axios from 'axios';
21
export default {
22
name : 'ViewPrev',
23
data() {
24
return {
25
user : {},
26
patients : []
27
}
28
},
29
mounted() {
30
this.user = this.$store.getters.getCurrentUser;
31
console.log('inside component',this.user.centerName,this.user.centerId,this.user.customerId);
32
axios.get(`/${this.user.customerId}/${this.user.centerId}/patients`).then(({data,status}) => {
33
console.log(data,status);
34
data.patients.map((pat) => {
35
this.patients.push({
36
name : pat.centerName,
37
uid : pat.uid,
38
reportDetails : pat.reportDetails,
39
});
40
})
41
console.log('patients',this.patients);
42
})
43
}
44
};
45
</script>
46
47
<style lang="scss" scoped>
48
</style>
49
I am able to receive the results from console.log() and here are the results
JavaScript
1
35
35
1
(4) [{…}, {…}, {…}, {…}, __ob__: Observer]
2
0: {__ob__: Observer}
3
1: {__ob__: Observer}
4
2: {__ob__: Observer}
5
3:
6
name: "ssd"
7
reportDetails: Array(1)
8
0:
9
dates: "Tue Apr 13 2021 01:13:24 GMT+0530 (India Standard Time)"
10
reportLinks: "https://neos-bucket.s3.amazonaws.com/neos-bucket/NHT011/13-3-2021/report/NHT011-report.pdf"
11
_id: "6074a2dd74a2fd4320362340"
12
__ob__: Observer {value: {…}, dep: Dep, vmCount: 0}
13
get dates: ƒ reactiveGetter()
14
set dates: ƒ reactiveSetter(newVal)
15
get reportLinks: ƒ reactiveGetter()
16
set reportLinks: ƒ reactiveSetter(newVal)
17
get _id: ƒ reactiveGetter()
18
set _id: ƒ reactiveSetter(newVal)
19
__proto__: Object
20
length: 1
21
__ob__: Observer {value: Array(1), dep: Dep, vmCount: 0}
22
__proto__: Array
23
uid: ( )
24
__ob__: Observer {value: {…}, dep: Dep, vmCount: 0}
25
get name: ƒ reactiveGetter()
26
set name: ƒ reactiveSetter(newVal)
27
get reportDetails: ƒ reactiveGetter()
28
set reportDetails: ƒ reactiveSetter(newVal)
29
get uid: ƒ reactiveGetter()
30
set uid: ƒ reactiveSetter(newVal)
31
__proto__: Object
32
length: 4
33
__ob__: Observer {value: Array(4), dep: Dep, vmCount: 0}
34
__proto__: Array
35
Can someone please explain why I still get this error ? P.S I am calling this component inside another page called dashboard, I doubt that could be the problem but here’s the code for that if it helps
JavaScript
1
45
45
1
<template>
2
<div>
3
<div class="row">
4
<div class="col-6">
5
<div class="logo">
6
7
<div class="d-grid gap-2 d-md-flex justify-content-md-start col-2">
8
<button type="button" class="btn-sm">SETTINGS</button>
9
</div>
10
<div class="d-grid gap-2 d-md-flex justify-content-md-start col-2">
11
<button type="button" class="btn-sm">SIGN OUT</button>
12
</div>
13
</div>
14
</div>
15
<div class="col-6">
16
<h4>NEOS HEALTHTECH</h4>
17
<view-prev></view-prev>
18
</div>
19
</div>
20
</div>
21
</template>
22
23
<script>
24
import ViewPrev from '../components/ViewPrev.vue';
25
export default {
26
components: { ViewPrev},
27
};
28
</script>
29
30
<style lang="scss" scoped>
31
h4 {
32
font-family: "Montserrat", sans-serif;
33
font-style: normal;
34
font-size: 35px;
35
line-height: 40px;
36
color: #ffffff;
37
// display: flex;
38
// align-items: center;
39
text-align: right;
40
letter-spacing: 0.5em;
41
text-transform: uppercase;
42
margin-top: 1em;
43
}
44
</style>
45
Advertisement
Answer
There is a typo in your code, if you try v-for
rather than :for
, you should get the result you need.
In terms of the vue shorthand, it really is only v-bind:
that can be abbreviated to :
, definitely one to look out for in future!