Django / Python,在每个用户请求上调用特定的类/函数
我正在查看 Django 文档以了解执行此操作的方法,但没有看到任何内容,尽管我可能错过了它,因为我不确定到底在哪里查看...我希望能够执行特定操作每个用户请求,例如实例化一个类并调用其函数之一,但是我现在知道执行此操作的唯一方法是将其放入每个视图函数中。有没有更好的方法来做到这一点,任何建议都值得赞赏。
I was looking over the Django documentation on a way to do this but didn't see anything, though I may have missed it as I'm not sure exactly where to look... I want to be able to perform a specific action on every user request, such as instantiating a class and calling one of its functions, however the only way I know of to do this now is to put it in each view function. Is there a better way to do this, any advice is appreciated.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您想要使用 Django 的 中间件 功能。
You want to use Django's middleware functionality.