基于 Django 类的 DetailView/ListView ajax 装饰器?
1 有没有一种方便的方法来 ajax 装饰基于通用类的视图?
2 与 DetailView 相比,ListView 是否有不同的方法?
IE
if not request.is_ajax():
raise Http404
1
Is there a conveinient way to ajax decorate generic class based views?
2
Is there a different approach for ListViews compared to DetailViews?
i.e.
if not request.is_ajax():
raise Http404
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
要装饰所有基于类的视图,请装饰
dispatch
方法。To decorate all class based views, decorate the
dispatch
method.