欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页  >  IT编程

Vue.js实现模拟微信朋友圈开发demo

程序员文章站 2023-09-07 21:05:43
我用vue.js实现微信朋友圈的一些功能,实现展示朋友圈,评论,点赞。 先构造一个vue的实例,对会更改的数据进行双向绑定, 我用json伪造模版数据,先实...

我用vue.js实现微信朋友圈的一些功能,实现展示朋友圈,评论,点赞。

先构造一个vue的实例,对会更改的数据进行双向绑定,

我用json伪造模版数据,先实现显示朋友圈的效果,使用v-for方法去循环allfeeds中的每一项item生成包括name、content、time在内的各项数据。

微信朋友圈实现效果

Vue.js实现模拟微信朋友圈开发demo

html代码:

 <div class="border" v-for="item in allfeeds" track-by="$index">
      <div class="user-pic">
       <img v-bind:src="item.url" alt="">
      </div>
      <div class="user-content">
       <h2 class="spacing">{{item.name}}</h2>
       <p class="spacing">{{item.content}}</p>
       <img class="spacing" v-bind:src="item.picurl" alt="">
       <span class="spacing time">{{item.time}}</span>
       <div class="commit" v-show="item.showcomt">
        <a v-on:click="likeclick($event,item)" class="btn btn-left" href="javascript:;" rel="external nofollow" rel="external nofollow" rel="external nofollow" rel="external nofollow" rel="external nofollow" >
         <span class="icon-heart-empty"></span>{{item.like}}
        </a>
        <a v-on:click="comtclick($event,item)" href="javascript:;" rel="external nofollow" rel="external nofollow" rel="external nofollow" rel="external nofollow" rel="external nofollow" class="btn btn-comment">
         <span class="icon-comment-alt"></span>评论
        </a>
       </div>

实现朋友圈点赞

当like的值变为赞时,向userlike中push一个点赞的username,然后将like的值变为取消。当用户点击取消按钮的时候,将userlike数组中添加的赞pop掉。

likeclick: function (event, feed) {
     event.stoppropagation();
     if (feed.like === "赞") {
      if (guserinfo) {
       feed.userlike.push(guserinfo.username);
       feed.like = '取消';
      }
     } else {
      if (guserinfo) {
       feed.userlike.pop();
       feed.like = '赞';
      }
     }
    }

实现评论功能

input的val()push到content的值里。

 inputclick: function (event) {
     event.stoppropagation();
     var comtext = $(".inset input").val();
     this.clickfeed.comment.push({"name": guserinfo.username, "content": comtext});
     $(".inset").addclass("hidden");
     $(".overplay").addclass("hidden");
     $('.inset input').val('');
    }

实现评论回复功能

给comment中添加reply的key。由于微信的回复是平铺的所以只要显示谁对谁的回复即可,不需要进行评论的嵌套。所以html中使用v-if对comment中是否存在reply进行判断。

 replyclick:function(event){
     event.stoppropagation();
     var replytext = $(".replybox input").val();
     this.clickfeed.comment.push({
      "name":guserinfo.username,
      "content":replytext,
      "reply":this.replyuser
     });
     $(".replybox").addclass("hidden");
     $(".overplay").addclass("hidden");
     $(".replybox input").val('');
    }

对comment中是否存在reply进行判断 

<div v-if="!(onecommet.reply)">
             <a href="javascript:;" rel="external nofollow" rel="external nofollow" rel="external nofollow" rel="external nofollow" rel="external nofollow" v-on:click="replycomt($event,item,onecommet)" class="reply">
              <span class="user">{{onecommet.name}}:</span>
              {{onecommet.content}}
             </a>
            </div>
            <div v-else>
             <a href="javascript:;" rel="external nofollow" rel="external nofollow" rel="external nofollow" rel="external nofollow" rel="external nofollow" v-on:click="replycomt($event,item,onecommet)" class="reply">
              <span class="user">{{userinfo.username}}</span>回复 <span class="user">{{replyuser}}:
              <a href="javascript:;" rel="external nofollow" rel="external nofollow" rel="external nofollow" rel="external nofollow" rel="external nofollow" class="reply">{{onecommet.content}}</a>
             </span>
             </a>
            </div>

遇到的坑:

当异步加载json的时候,不能直接获取到json的值,因为可能等下面函数加载完后json的值还未拿到。所以会出现data数据为undefined的情况。所以需要在json的回调函数中进行函数调用。

初始化showcomt时,需要用到ready,当dom加载完后再执行。

收获:

学会了使用v-for、v-if、v-show,v-on:click等vue的方法,vue的构造器,jquery的ajax相关的方法。

github链接

项目下载地址:webchat-friendfeed_jb51.rar

以上就是本文的全部内容,希望对大家的学习有所帮助,也希望大家多多支持。