我工作的一個項目使用Django,在此我有一個模塊,這表明用戶以表格形式上市,用戶收益從Django的視圖中的數據使用AJAX的Django模板,因此,按鍵式的動作值也必須從視圖中JSON響應返回給模板,就像我們平時在引導阿賈克斯的DataTable做。如何在Django視圖中添加href的值
現在的問題是,我有設置在Django視圖href的值。
代碼中的觀點是: -
for user in users:
actionValues='<a title="Edit" class="btn btn-sm green margin-top-10" href="'"><i class="fa fa-edit"></i></a>
<a title="View" class="btn btn-sm blue margin-top-10" href="'"><i class="fa fa-view"></i></a>';
inner_data_list = [
i,
user['first_name'],
user['last_name'],
user['email'],
user_type,
'<div id=%s class="bootstrap-switch bootstrap-switch-%s bootstrap-switch-wrapper bootstrap-switch-animate toogle_switch"><div class="bootstrap-switch-container" ><span class="bootstrap-switch-handle-on bootstrap-switch-primary"> Active </span><label class="bootstrap-switch-label"> </label><span class="bootstrap-switch-handle-off bootstrap-switch-default"> Inactive </span></div></div>'%(user['id'],checked),
user['date_joined'],
actionValues
]
datalist.append(inner_data_list)
正如你可以看到在代碼中有它包含兩個按鈕,與每個房源的變量actionValues,現在我要做的就是我要將這兩個按鈕分別鏈接到edit_details和view_details。那麼如何將這兩個按鈕鏈接到它們各自的功能。
使用此設置必須設置真實路徑不能使用像{%url'users'%}這樣的代碼「 – Pankaj