MethodDispatcher
from是否CherryPy
处理多个 url 路径?我正在尝试执行类似下面的操作,但是虽然请求可以/customers
正常工作,但请求/orders
始终返回“404 没有与给定的 URI 匹配”。
class Customers(object):
exposed = True
def GET(self):
return getCustomers()
class Orders(object):
exposed = True
def GET(self):
return getOrders()
class Root(object):
pass
root = Root()
root.customers = Customers()
root.orders = Orders()
conf = {
'global': {
'server.socket_host': '0.0.0.0',
'server.socket_port': 8000,
},
'/': {
'request.dispatch': cherrypy.dispatch.MethodDispatcher(),
},
}
cherrypy.quickstart(root, '/', conf)