如何从MongoDB获取数据并使用Vue.js显示

时间:2019-01-05 18:26:34

标签: node.js mongodb

im正在努力开发用于网络聊天应用程序的服务器和索引。我的目标是使用Vue.js显示MongoDB中存储的用户名,该名称显示在控制台中,但不会显示在网页上任何建议都可以帮助我显示我数据库中存储的用户名。

在index.html

<div v-for="user in users" class='chatbox__user--active' @click="loadoldmessage(user)">
        <p>{{user.name}}</p>  mounted:function(){

            socket.on('get',function(data){

            this.users.push(data);
               console.log(this.users);  }.bind(this))  

           }
in app.js
 socket.on('getuser',function(){
                            logins.find({},function(err,users){
                                if(err)
                                throw err;
                                socket.emit('get',users);
                               })})

Picture-1 Picture-2

0 个答案:

没有答案