Vue.jsを使用してMongoDBからデータを取得して表示する方法


0

Webチャットアプリケーションのサーバーとインデックスの開発に取り組んでいるim。 MongoDBに格納されているユーザーの名前を表示することが私の目的はVue.jsを使用することです。名前はコンソールに表示されますがWebページには表示されません。

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);
                               })})

写真-1 写真2

弊社のサイトを使用することにより、あなたは弊社のクッキーポリシーおよびプライバシーポリシーを読み、理解したものとみなされます。
Licensed under cc by-sa 3.0 with attribution required.