Nuxt plugin cannot access Vue#39;s #39;this#39; instance in function blocks(Nuxt插件无法访问功能块中的Vue39;s;This实例)
本文介绍了Nuxt插件无法访问功能块中的Vue&39;s;This实例的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!
问题描述
所以我已经设法注入hls.js来处理nuxtjs$root元素和this
我是这样做的(hls.client.js):
import Hls from 'hls.js';
export default (context, inject) => {
inject('myhls', Hls)
}
和nuxt.config.js
plugins: [
'~plugins/hls.client.js',
],
这真的很有效:-)但我不能在HLS事件中引用‘this’。
playHls() {
this.playing = true
if(this.$myhls.isSupported()) {
this.hls = new this.$myhls();
this.audio = new Audio('');
this.hls.attachMedia(this.audio);
this.hls.loadSource(this.scr_arr[2]);
this.audio.play()
// 'THIS' DOES NOT WORK INSIDE this.hls.on
this.hls.on(this.$myhls.Events.MEDIA_ATTACHED, function () {
console.log(this.scr_arr[2]); // DOES NOT LOG
console.log("ok") // works great
});
// 'THIS' DOES NOT WORK INSIDE this.hls.on
this.hls.on(this.$myhls.Events.MANIFEST_PARSED, function (event, data) {
console.log('manifest loaded, found ' + data.levels.length + ' quality level') // WORKS
console.log("ok") // WORKS
this.audio.volume = 1 // DOES not work
});
}
},
所以我在这些事件中不能使用nuxtjs‘this’,因为似乎有不同的作用域?
我能否以某种方式在这些事件中获得"this"nuxt作用域?
推荐答案
替换您的函数,如
this.hls.on(this.$myhls.Events.MANIFEST_PARSED, function (event, data) {
进入
this.hls.on(this.$myhls.Events.MANIFEST_PARSED, (event, data) => {
要将this
上下文绑定到Vue应用,否则它的作用域将限制在挡路作用域的上下文中。
这篇关于Nuxt插件无法访问功能块中的Vue&39;s;This实例的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!
沃梦达教程
本文标题为:Nuxt插件无法访问功能块中的Vue&39;s;This实例
猜你喜欢
- 如何显示带有换行符的文本标签? 2022-01-01
- 在不使用循环的情况下查找数字数组中的一项 2022-01-01
- 使用 iframe URL 的 jQuery UI 对话框 2022-01-01
- 为什么我的页面无法在 Github 上加载? 2022-01-01
- 我不能使用 json 使用 react 向我的 web api 发出 Post 请求 2022-01-01
- 是否可以将标志传递给 Gulp 以使其以不同的方式 2022-01-01
- 从原点悬停时触发 translateY() 2022-01-01
- 如何调试 CSS/Javascript 悬停问题 2022-01-01
- 如何向 ipc 渲染器发送添加回调 2022-01-01
- 为什么悬停在委托事件处理程序中不起作用? 2022-01-01