I am using vue.js with element-ui library and I have this problem where I need to show this dialog component to be able to show the camera and the user’s audio but I have the following error in console
TypeError: Cannot set property ‘srcObject’ of undefined”
As you can see, first I am calling the mounted instance where it collects the video and audio information of the user and in the show dialog function I am recovering the data.
Here is the code:
JavaScript
x
84
84
1
<template>
2
<div class="main-background">
3
<el-main>
4
<el-row class="opt" style="top: 11%">
5
<el-col :push="16" :span="2">
6
<el-button v-show="false" @click="quickMeeting" :style="shadow" type="primary">
7
<i class="el-icon-video-camera"></i> Reunión rápida
8
</el-button>
9
</el-col>
10
11
</el-row>
12
<el-dialog id="video-dialog" :visible.sync="dialogVisible" style="padding: 0;margin:0">
13
<div id="dialog-video" style="backgroud-color: #fff;width:100%;height:100%;" v-show="turnonVideoCamera">
14
<video autoplay ref="videoBackup" style="position: relative;width:100%;height:100%;"></video>
15
</div>
16
17
</el-dialog>
18
</el-main>
19
</div>
20
21
</template>
22
23
<script>
24
export default {
25
name: "index",
26
data() {
27
return {
28
29
roomNumber: '',
30
dialogVisible: false,
31
localStream: null,
32
videoDevice: null,
33
34
}
35
},
36
methods: {
37
async _initMethod(){
38
console.log("xd")
39
const devices = await navigator.mediaDevices.enumerateDevices();
40
const videoDevices = devices.filter(device => device.kind === 'videoinput');
41
this.videoDevice = videoDevices.length >0?videoDevices[0]:null;
42
43
this.localStream = await navigator.mediaDevices.getUserMedia({
44
video: this.videoConf,
45
audio: true,
46
});
47
48
49
},
50
quickMeeting() {
51
this.showDialog();
52
},
53
54
jump(){
55
sessionStorage.setItem('joinName', this.joinName);
56
sessionStorage.setItem('turnonVideoCamera', this.turnonVideoCamera);
57
sessionStorage.setItem('turnonMicrophone', this.turnonMicrophone);
58
this.$router.push('/meeting/'+ this.roomNumber);
59
},
60
showDialog(){
61
this.dialogVisible = true;
62
this.$nextTick(function() {
63
console.log("xd")
64
this.$refs.videoBackup.srcObject = this.localStream;
65
})
66
},
67
68
},
69
mounted(){
70
this._initMethod();
71
console.log("xd")
72
},
73
computed:{
74
videoConf: function(){
75
return {
76
deviceId: this.videoDevice.deviceId,
77
width: 1920,
78
height: 603
79
};
80
}
81
}
82
}
83
</script>
84
Advertisement
Answer
You need to use Arrow functions as callback for your $nextTick
, otherwise the this
variable inside the callback will not be the component object
JavaScript
1
8
1
showDialog(){
2
this.dialogVisible = true;
3
this.$nextTick(() => { // arrow function
4
console.log("xd")
5
this.$refs.videoBackup.srcObject = this.localStream;
6
})
7
},
8