- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
假设我想为每个访问网站中特定功能的用户创建一个单例对象。该对象不是模型。
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/
我最近购买了《C 编程语言》并尝试了 Ex 1-8这是代码 #include #include #include /* * */ int main() { int nl,nt,nb;
早上好!我有一个变量“var”,可能为 0。我检查该变量是否为空,如果不是,我将该变量保存在 php session 中,然后调用另一个页面。在这个新页面中,我检查我创建的 session 是否为空,
我正在努力完成 Learn Python the Hard Way ex.25,但我无法理解某些事情。这是脚本: def break_words(stuff): """this functio
我是一名优秀的程序员,十分优秀!