5

我有一个看起来像的网络表单:

<form action="/process_form/" method="post">
  <input type="text" name="login" value="login" />
  <input type="text" name="password" value="123" />
  <input type="submit" />
</form>

处理这个问题的python类是:

class Handle:
  @cherrypy.expose()
  #@cherrypy.tools.post <-- Is something like this possible
  def index(self, login=None):
    print(login)

CherryPy 中有没有办法限制对/process_form/POST 方法的调用?我的意思是如果用户键入http://www.example.com/process_form/他/她应该得到一个异常/错误或找不到页面?

4

1 回答 1

9

Allow 工具将引发 405。

@cherrypy.tools.allow(methods=['POST'])
于 2013-03-31T16:29:19.470 回答