溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點擊 登錄注冊 即表示同意《億速云用戶服務(wù)條款》

Vue.js怎么實現(xiàn)模擬微信朋友圈開發(fā)demo

發(fā)布時間:2021-04-25 14:44:28 來源:億速云 閱讀:249 作者:小新 欄目:web開發(fā)

這篇文章主要介紹Vue.js怎么實現(xiàn)模擬微信朋友圈開發(fā)demo,文中介紹的非常詳細,具有一定的參考價值,感興趣的小伙伴們一定要看完!

Vue的優(yōu)點

Vue具體輕量級框架、簡單易學、雙向數(shù)據(jù)綁定、組件化、數(shù)據(jù)和結(jié)構(gòu)的分離、虛擬DOM、運行速度快等優(yōu)勢,Vue中頁面使用的是局部刷新,不用每次跳轉(zhuǎn)頁面都要請求所有數(shù)據(jù)和dom,可以大大提升訪問速度和用戶體驗。

我用Vue.js實現(xiàn)微信朋友圈的一些功能,實現(xiàn)展示朋友圈,評論,點贊。

先構(gòu)造一個vue的實例,對會更改的數(shù)據(jù)進行雙向綁定,

我用JSON偽造模版數(shù)據(jù),先實現(xiàn)顯示朋友圈的效果,使用v-for方法去循環(huán)ALLFeeds中的每一項item生成包括name、content、time在內(nèi)的各項數(shù)據(jù)。

HTML代碼:

 <div class="border" v-for="item in AllFeeds" track-by="$index">
      <div class="user-pic">
       <img v-bind:src="item.url" >
      </div>
      <div class="user-content">
       <h3 class="spacing">{{item.name}}</h3>
       <p class="spacing">{{item.content}}</p>
       <img class="spacing" v-bind:src="item.picUrl" >
       <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>

實現(xiàn)朋友圈點贊

當like的值變?yōu)橘潟r,向userLike中push一個點贊的username,然后將like的值變?yōu)槿∠?。當用戶點擊取消按鈕的時候,將userLike數(shù)組中添加的贊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 = '贊';
      }
     }
    }

實現(xiàn)評論功能

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

實現(xiàn)評論回復(fù)功能

給comment中添加reply的key。由于微信的回復(fù)是平鋪的所以只要顯示誰對誰的回復(fù)即可,不需要進行評論的嵌套。所以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>回復(fù) <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的值,因為可能等下面函數(shù)加載完后JSON的值還未拿到。所以會出現(xiàn)data數(shù)據(jù)為undefined的情況。所以需要在JSON的回調(diào)函數(shù)中進行函數(shù)調(diào)用。

初始化showComt時,需要用到ready,當DOM加載完后再執(zhí)行。

以上是“Vue.js怎么實現(xiàn)模擬微信朋友圈開發(fā)demo”這篇文章的所有內(nèi)容,感謝各位的閱讀!希望分享的內(nèi)容對大家有幫助,更多相關(guān)知識,歡迎關(guān)注億速云行業(yè)資訊頻道!

向AI問一下細節(jié)

免責聲明:本站發(fā)布的內(nèi)容(圖片、視頻和文字)以原創(chuàng)、轉(zhuǎn)載和分享為主,文章觀點不代表本網(wǎng)站立場,如果涉及侵權(quán)請聯(lián)系站長郵箱:is@yisu.com進行舉報,并提供相關(guān)證據(jù),一經(jīng)查實,將立刻刪除涉嫌侵權(quán)內(nèi)容。

vue
AI