📜  “必须在 URLconf 中使用对象 pk 或 slug 调用”- Python 代码示例

📅  最后修改于: 2022-03-11 14:46:00.198000             🧑  作者: Mango

代码示例1
class HostDetailPageView(DetailView):
    template_name = 'hosts/hostdetail.html'
    model = Host
    pk_url_kwarg = 'name'

    def get_queryset(self):
        return super().get_queryset().filter(host__name=self.kwargs['host'])