我已经用瓶子做了一些编码。这真的很简单,适合我的需要。但是,当我尝试将应用程序包装到一个类中时,我遇到了困难:
import bottle
app = bottle
class App():
def __init__(self,param):
self.param = param
# Doesn't work
@app.route("/1")
def index1(self):
return("I'm 1 | self.param = %s" % self.param)
# Doesn't work
@app.route("/2")
def index2(self):
return("I'm 2")
# Works fine
@app.route("/3")
def index3():
return("I'm 3")
是否可以在 Bottle 中使用方法而不是函数?