ajax 實現點讚功能

2021-08-19 23:29:46 字數 452 閱讀 2491

原理:

1.通過ajax將資料提交到服務端。

2.服務端處理並返回結果。

jquery的ajax形式如下:

$.ajax(,//需要提交的資料

success:function(data)

if(data==2)

}});

服務端處理資料:

//post接受資料

$id = $_post['id'];

$user = $_post['user'];

$sql = "update table set praise=praise+1 where id=".$id;//更新點讚

$sql2 = "insert into table2 user values('".$user."')";//插入點讚記錄

if(mysql_query($sql)&&mysql_query($sql2))else

redis實現點讚功能參考

public void likearticle long articleid,long likeduserid,long likedpostid likeduserid likedpostid articleid,likeduserid,likedpostid synchronized this l...

jquery ajax之點贊功能的實現

之前,一直想用一下ajax的技術到專案中,看他到底好處在 為什麼會被這麼多人所推崇。還記得之前也是看過jquery,但是現在回過來想想,其實能夠記起來的東西很少,只有將知識應用起來,可能才會記憶深刻吧!今年開始我逐漸開始積累起自己的一些 和 新知識,這樣的話到以後要用的時候可以作為參考之用。func...

Redis實現點讚功能模組

之前看了一篇文章,講redis的應用場景,其中乙個應用場景就是實現點讚功能,紙上得來恐覺淺,必須實戰一波 使用者某篇文章的點讚數 使用hashmap資料結構,hashmap中的key為articleid,value為set,set中的值為使用者id,即hashmap 使用者總的點讚數 使用hashm...