1
如何使用django的generic class DetailView
獲取當前用戶相關對象?使用基於函數的觀點,我能得到這樣的對象:如何使用django泛型類detailview獲取用戶特定的對象?
def foo(request):
friendProfile = get_object_or_404(request.user.profile.friends,username="admin")
什麼是相當於使用詳細信息視圖?我猜這是與get_object
或get_context_data
有關,但我不能完全理解這些文件。
謝謝。
您能爲我提供一個例子嗎? – meowmeow
用示例編輯的響應。 –
優秀!謝謝。 – meowmeow