第七色在线视频,2021少妇久久久久久久久久,亚洲欧洲精品成人久久av18,亚洲国产精品特色大片观看完整版,孙宇晨将参加特朗普的晚宴

為了賬號(hào)安全,請(qǐng)及時(shí)綁定郵箱和手機(jī)立即綁定
已解決430363個(gè)問(wèn)題,去搜搜看,總會(huì)有你想問(wèn)的

Django HTML 通過(guò)動(dòng)態(tài)字典名稱(chēng)進(jìn)行迭代

Django HTML 通過(guò)動(dòng)態(tài)字典名稱(chēng)進(jìn)行迭代

慕尼黑5688855 2023-12-19 16:53:03
我正在嘗試創(chuàng)建一個(gè)網(wǎng)站,其中網(wǎng)站的一部分我使用 html 中的動(dòng)態(tài)選項(xiàng)卡,其中每個(gè)選項(xiàng)卡將顯示不同的數(shù)據(jù)?,F(xiàn)在我想做的是在views.py 中為不同的選項(xiàng)卡創(chuàng)建不同的字典。到目前為止,我已經(jīng)在views.py 文件中創(chuàng)建了以下內(nèi)容。def display_rpt (request):    alltrasfData={}    sec = Section.objects.all()    for key in sec:        transactions = Transaction.objects.values('feast_year__title','feast_year','feast_group__title','section','section__short').filter(section_id=key.id).order_by('section','-feast_year','-feast_group__title').annotate(Total_income=Sum('income_amt'),Total_Expenditure=Sum('expenditure_amt'))        subtotal = Transaction.objects.values('section','feast_year','feast_year__title').filter(section_id=key.id).annotate(Total_income=Sum('income_amt'),Total_Expenditure=Sum('expenditure_amt'))        grandtotal = Transaction.objects.values('section').filter(section_id=key.id).annotate(Total_income=Sum('income_amt'),Total_Expenditure=Sum('expenditure_amt'))        alltrasfData[f'transactions_{key.id}']=transactions        alltrasfData[f'subtotal_{key.id}']=subtotal        alltrasfData[f'grandtotal_{key.id}'] = grandtotal    alltrasfData['sec']=sec    return render(request, 'homepage/reports.html',alltrasfData)只是為了讓您了解 alltrasfData 中的一些字典是:“交易_1”、“交易_2”、“交易_3”Django html 中有沒(méi)有一種方法可以使用動(dòng)態(tài)字典名稱(chēng)迭代這些不同的字典。
查看完整描述

2 回答

?
明月笑刀無(wú)情

TA貢獻(xiàn)1828條經(jīng)驗(yàn) 獲得超4個(gè)贊

您可以使用?模板標(biāo)記輕松地在模板中迭代?dictfor

{% for key, values in alltrasfData.items %}

? ? {% if 'transaction' in key %}

? ? ? ? {% for transaction in values %}

? ? ? ? ? ? <p>feast_year: {{transaction.feast_year}}</p>

? ? ? ? ? ? <p>...</p>

? ? ? ? {% endfor %}

? ? {% elif 'subtotal' in key %}

? ? ? ? # logic for subtotal goes here

? ? ? ? # ...

? ? {% else %}

? ? ? ? ?# logic for grandtotal goes here

? ? ? ? # ...

? ? {% endif %}

{% endfor %}


查看完整回答
反對(duì) 回復(fù) 2023-12-19
?
白衣染霜花

TA貢獻(xiàn)1796條經(jīng)驗(yàn) 獲得超10個(gè)贊

我認(rèn)為將 alltrasfData 存儲(chǔ)在字典中context,將其傳遞給 render() 并在 HTML 中使用以下內(nèi)容:< /span>

{% for key,value in alltrasfData %}
    print(key,value)
{% endfor %}


查看完整回答
反對(duì) 回復(fù) 2023-12-19
  • 2 回答
  • 0 關(guān)注
  • 201 瀏覽

添加回答

舉報(bào)

0/150
提交
取消
微信客服

購(gòu)課補(bǔ)貼
聯(lián)系客服咨詢(xún)優(yōu)惠詳情

幫助反饋 APP下載

慕課網(wǎng)APP
您的移動(dòng)學(xué)習(xí)伙伴

公眾號(hào)

掃描二維碼
關(guān)注慕課網(wǎng)微信公眾號(hào)