gpt4 book ai didi

python - Django 中的单例对象行为

转载 作者:行者123 更新时间:2023-12-01 00:23:08 25 4
gpt4 key购买 nike

假设我想为每个访问网站中特定功能的用户创建一个单例对象。该对象不是模型。

class NavApi:
__instance = None

@staticmethod
def get_instance():
""" Static access method. """
if NavApi.__instance is None:
Client()
return NavApi.__instance

在 View 文件中

@csrf_exempt
def get_folder_tree(request):
if request.method == "POST":
nav_api = NavAPI.get_instance()
folders = nav_api.listing_folders(request.POST.get('id'))
return render(request, "folder_tree.html", {'folders': folders, 'page1': False})


@csrf_exempt
def get_prev_folder_tree(request):
if request.method == "POST":
nav_api = NavAPI.get_instance()
page1,folders = nav_api.listing_prev_folder_tree()
return render(request, "folder_tree.html", {'folders': folders,'page1':page1})

使用 Singleton 的原因是类对象只有很少的成员来定义文件夹/内容/当前的folder_id等的状态。并且不应该为每个 View 创建它。需要重复使用

但是当我尝试将其公开运行、使用 ngrok 并将链接分享给我的 friend 并测试导航功能时,

我们最终使用了相同的单例对象。当我浏览文件夹 A 的内容,而他浏览文件夹 B 的内容时,我们最终收到了同一文件夹(A 或 B)的内容。如何克服这个问题?

最佳答案

Python 不是 PHP...在典型的生产设置中,您的应用程序将由许多长时间运行的进程提供服务,因此您不能指望可靠地使用进程内存作为持久全局状态的方法(单例是全局的)状态)从请求到请求 - 您可以让同一个用户有两个连续的请求由不同的进程提供服务,并且同一进程为两个不同的用户提供请求。

如果您想在请求之间维护每个用户的状态,则必须使用一些共享存储,这里非常明显的解决方案是 session 。

Can I get any reference to a resource which deals a similar case?

使用 session ? That's fully documented

哦,是的:如果您所做的只是浏览文件夹,那么您就严重滥用了 http 动词:

The POST method is used to request that the origin server accept the entity enclosed in the request as a new subordinate of the resource identified by the Request-URI in the Request-Line.

https://www.w3.org/Protocols/rfc2616/rfc2616-sec9.html

这里您只是读取资源,因此您想使用 GET 请求。

关于python - Django 中的单例对象行为,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/58818202/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com