HTTP 303 (SeeOther): GET Works, POST Fails

你离开我真会死。 提交于 2019-12-02 02:05:16

It's entirely possible that this isn't your issue, but since you don't have your code posted I'll take a shot (just in case).

Since you're using web.py, do you have the POST method defined on your object?

i.e.

urls = (
    '/page', 'page'
)

class page:

    def POST(self):
        # Do something

    def GET(self):
        # Do something else
易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!