我正在尝试让php登录龙卷风,当我点击“登录”时,我收到的页面上有一条错误,上面写着“405方法不允许”。
这是我的表格:
<form method="POST">
<fieldset id="inputs">
<input name="username" id="username" required>
<input name="password" id="password" type="password" name="Password" placeholder="Password" required>
</fieldset>
<fieldset id="actions">
<input type="submit" id="submit" value="Log in" name="submit">
<label><input type="checkbox" checked="checked"> Keep me signed in</label>
</fieldset>
</form>
答案 0 :(得分:1)
您需要向表单添加操作,并在处理程序中使用post方法。如果你设置了一个像:
这样的处理程序(r"/feedback", FeedbackHandler)
哪个有帖子方法:
def post(self):
#do something here
表格中有:
<form action="/feedback" method="post" >
它应该有用。