91超碰碰碰碰久久久久久综合_超碰av人澡人澡人澡人澡人掠_国产黄大片在线观看画质优化_txt小说免费全本

溫馨提示×

溫馨提示×

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

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

多級評論的實現

發布時間:2020-08-03 00:29:50 來源:網絡 閱讀:3061 作者:ck_god 欄目:編程語言

第一種:

comment_list=models.Comment.objects.filter(news_id=new_id)
ret=[]  # 最終拿到的數據
comment_list_dict={}  # 構建的中間字典
for row in comment_list:  # 通過查到的數據中的id作為key,每一行數據作為value生成一個字典
    row.update({"children":[]})  # 構建一個鍵children對應一個空列表
    comment_list_dict[row["id"]]=row  # 將id作為鍵,當前行作為值存到該字典中

for item in comment_list:  # 遍歷一遍取到的數據列表
    parrent_row=comment_list_dict.get(item["parent_id"])  # 拿到當前行對應的父親的地址
    if not parrent_row:  # 如果父親是None,則直接進入ret中
        ret.append(item)
    else:  # 否則,將這行append到父親的children中
        parrent_row["children"].append(item)  # 重點在這一行,用到了上面提到的第一個知識點
print(ret)

第二種:


from django.utils.safestring import mark_safe
# 遞歸查找父節點
def find_father(dic, comment_obj):
    # 對字典中的每一組元素進行循環操作
    for k, v_dic in dic.items():
        # 如果k等于comment_obj的父節點,那么表示找到了父親。
        if k == comment_obj.parent_comment:
            # 找到了父親,認祖歸宗,把自己歸位到父親下面,并給將來的兒子留個位置
            dic[k][comment_obj] = {}
            # 找到了父親,處理完畢,返回
        else:
            # 剛才沒找到,剝一層,接著往下找。
            find_father(dic[k], comment_obj)

# 遞歸生成html字符串
def generate_comment_html(sub_comment_dic, margin_left_val):
    # 先創建一個空字符串
    html = ""
    # 對傳入的字典進行循環操作
    for k, v_dic in sub_comment_dic.items():
        html += "<div style='margin-left:%spx'><span class='nickname'>" % margin_left_val + k.name + "</span>" + "<time class='submit-date'>" + str(k.created_time.strftime('%Y-%m-%d %H:%M:%S')) + "<div class='text'>" + k.text + '</div></div><hr>'
        # html += "<div style='margin-left:%spx' class='comment-node'>" % margin_left_val + k.text + "</div>"
        # 有可能v_dic中依然有元素, 遞歸繼續加
        if v_dic:
            html += generate_comment_html(v_dic, margin_left_val+35)
    # 循環完成最后返回html
    return html

# 生成層級評論
@register.simple_tag
def build_comment_tree(comment_list):
    # 定義一個空字典用來保存轉換之后的結果
    comment_dic = {}
    # 對comment_list中的每個元素進行循環
    for comment_obj in comment_list:
        # 判斷comment_obj是否存在父節點。如果沒有,這把該評論作為第一個節點
        if comment_obj.parent_comment is None:
            comment_dic[comment_obj] = {}
        else:
            # 否則去找該對象的父節點。
            find_father(comment_dic, comment_obj)

    # 上面執行完畢,comment_dic中會有轉換好的結果
    # 開始拼接html字符串
    html = "<ul class='comment-list list-unstyled'>"
    # 規定一個margin left,每次有遞歸的時候就往右縮進一點。
    margin_left = 0
    # 對comment_dic中的每一組元素進行操作
    for k,v in comment_dic.items():
        # 第一層html
        html += "<li class='comment-item'><span class='nickname'>" + k.name + "</span>" + "<time class='submit-date'>" + str(k.created_time.strftime('%Y-%m-%d %H:%M:%S')) + "<div class='text'>" + k.text + '</div></li>'
        # 通過遞歸把他的兒子加上
        html += generate_comment_html(v, margin_left+35)
    # 最后把ul關上
    html += " </ul>"
    # 關掉轉義
    return mark_safe(html)
向AI問一下細節

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

AI

景谷| 兴隆县| 博客| 嘉兴市| 衡阳县| 萨迦县| 鲜城| 台中市| 永寿县| 台中县| 揭东县| 封丘县| 鹤峰县| 三都| 尚志市| 麦盖提县| 文化| 常德市| 屏东县| 潍坊市| 汶上县| 汉源县| 民勤县| 高淳县| 辽阳市| 古田县| 湘潭市| 秭归县| 邹城市| 花垣县| 永州市| 林甸县| 顺平县| 越西县| 砀山县| 宁武县| 武威市| 新安县| 房山区| 林芝县| 高平市|