gpt4 book ai didi

python - Python Bottle 路由中的类作用域

转载 作者:行者123 更新时间:2023-12-01 05:31:50 25 4
gpt4 key购买 nike

在 Bottle 路线内,我正在实例化一个类。

该页面可能会同时被调用,并且需要在函数中创建名为“newuser”的此类的同时实例。

我想确保不会发生冲突,因为函数为所有实例分配了名称“newuser”。

我认为这很好,因为类是在函数调用中创建的,并且类的范围应该只在函数本地?

from bottle import route, run

class user:
def __init__(self,id, name):
self.id = id
self.name = name
#Do some stuff that takes a while.



@route('/user/<id>/<name>', method = 'POST')
def test():
newuser = user(id, name)


run(host='localhost', port=8080, debug=True)

最佳答案

这确实很好; newuser 名称完全位于 test() 函数作用域内。这些实例不会在对该路由的调用之间共享。

关于python - Python Bottle 路由中的类作用域,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/20047710/

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