我一直在寻找CherryPy文档,但不能完全了解我想要做的事情。我怀疑它可能更像是一个Python而不是CherryPy ......
我当前的课程看起来像这样:
import managerUtils
class WebManager:
def A(self, **kwds):
return managerUtils.runAction("A", kwds)
A.enabled = True
def B(self, **kwds):
return managerUtils.runAction("B", kwds)
B.enabled = True
def C(self, **kwds):
return managerUtils.runAction("C", kwds)
C.enabled = True
显然这里有很多重复。
在managerUtils.py中的,我有一个类似的字典:
actions = {'A': functionToRunForA,
'B': functionToRunForB,
'C': functionToRunForC}
好的,这是一个略显简单的观点,但我相信你明白了。
我希望能够做到这样的事情:
import managerUtils
class WebManager:
def __init__(self):
for action in managerUtils.actions:
f = registerFunction(action)
f.enabled = True
关于如何做到这一点的任何想法?
一个答案建议:
class WebManager:
def index(self, action, **kwds):
return managerUtils.runAction(action, kwds)
index.enabled = True
接下来,我相信:
http://webserver/?action&kwds
而不是我想要的,这是:
http://webserver/action?kwds
当我按照您的建议行事时,我收到以下404错误:
Traceback (most recent call last):
File "/Library/Python/2.5/site-packages/cherrypy/_cprequest.py", line 606, in respond
cherrypy.response.body = self.handler()
File "/Library/Python/2.5/site-packages/cherrypy/_cperror.py", line 227, in __call__
raise self
NotFound: (404, "The path '/myAction' was not found.")
答案 0 :(得分:3)
class WebManager:
def default(self, action, **kwds):
return managerUtils.runAction(action, kwds)
default.exposed = True
关于为什么这与其他答案不同的两个注释:
.exposed
是发布方法的正确属性,而不是.enabled
index
方法是唯一一个不允许位置参数如“action”的方法。请改用default
方法。希望有所帮助!