Mer*_*isL 2 javascript node.js socket.io vue.js
我在将 socket.io 数据传递给 vuejs 元素时遇到问题。我浏览了几次 Vue 文档,但找不到解决方案。基本上,我有一个通过 socket.io 发送到客户端的数据,console.log 完美地打印了它。现在我想使用 Vue 来渲染带有该数据的 html 元素,但是我在将 socket.io 数据传递给它时遇到了问题。
在 Vue 文档中有一个示例,说明如何使用静态数据输入进行操作。
var example1 = new Vue({
el: '#example-1',
data: {
items: [
{ message: 'Foo' },
{ message: 'Bar' }
]
}
})
Run Code Online (Sandbox Code Playgroud)
所以我发现我需要为此将我的数据对象转换为字符串。我为此使用了 JSON.stringify()。
var socket = io.connect('http://192.168.1.10');
socket.on('posts', function (datasocket) {
var st = JSON.stringify(datasocket);
var blogposts = new Vue({
el: '#blogpost',
data: {
items: st
}
})
});
Run Code Online (Sandbox Code Playgroud)
和 HTML
<div id="blogpost">
<div v-for="item in items" class="card" style="width: 20rem;">
<div class="card-block">
<h4 class="card-title">{{ item.post_title }}</h4>
<p class="card-text">{{ item.post_excerpt }}</p>
<a href="{{ item.post_link }}" class="btn btn-primary">Go somewhere</a>
</div>
</div>
</div>
Run Code Online (Sandbox Code Playgroud)
然而,Vue 似乎没有渲染任何东西。在我的控制台中,当我在st上执行 console.log 时,我得到输出:
{"content":[{"post_title":"Post title 1","post_excerpt":"Post excerpt 1","post_link":"/post/1"},{"post_title":"Post title 2","post_excerpt":"Post excerpt 2","post_link":"/post/2"},{"post_title":"Post title 3","post_excerpt":"Post excerpt 2","post_link":"/post/3"}]}
Run Code Online (Sandbox Code Playgroud)
那么知道如何正确地将这些数据传递给 VueJS 吗?
您应该将套接字连接放入生命周期钩子之一 - 对于您的情况mounted()应该有效。
var socket = io.connect('http://192.168.1.10');
var blogposts = new Vue({
el: '#blogpost',
data: {
items: []
},
mounted: function() {
socket.on('posts', function(datasocket) {
this.items.push(datasocket.content)
}.bind(this))
}
})
Run Code Online (Sandbox Code Playgroud)
注意:如果使用箭头语法,则不必绑定 this
mounted: function() {
socket.on('posts', datasocket => {
this.items.push(datasocket.content)
})
}
Run Code Online (Sandbox Code Playgroud)
顺便说一句:我认为你不需要使用 JSON.stringify