再會(huì),我問自己,是否可以在我的模板中傳輸多個(gè)信息作為主鍵?。坷?,當(dāng)單擊我的表格內(nèi)的鏈接時(shí)......在這種情況下,我會(huì)傳輸 item-id:<tbody> {% for item in dataset %} <tr> <td> <a href="{% url 'Examplepage' item.id %}">Item-Name</a> </td> </tr> {% endfor %}</tobdy>現(xiàn)在我想轉(zhuǎn)移 ID 和 - 比方說 - 名字!這樣的事情有可能嗎?<tbody> {% for item in dataset %} <tr> <td> <a href="{% url 'Examplepage' item.id item.name %}">Item-Name</a> </td> </tr> {% endfor %}</tobdy>如果可能的話,我是否必須更改 urls.py 中的某些內(nèi)容?現(xiàn)在它看起來像這樣:path('index/<str:pk>', views.example, name="Example"),感謝您的所有幫助,祝您有美好的一天!
Django:將多個(gè)數(shù)據(jù)傳輸?shù)较乱粋€(gè)模板
幕布斯7119047
2023-10-18 15:52:40