博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
【Flask】遇到的问题
阅读量:6612 次
发布时间:2019-06-24

本文共 778 字,大约阅读时间需要 2 分钟。

hot3.png

1、The browser (or proxy) sent a request that this server could not understand. (self.flask)

if request.method == 'GET':    referrer = request.args.get('next', '/')    return render_template("login.html", next=referrer)elif request.method == 'POST':

解决:

i think the real issue is how your accessing your form data, if you say

post.text = request.form['body']

or w/e, and there isnt any data in form body, you get that error

to fix, access like this

post.text = request.form.get('body','')

which provides a sane default for cases where form['body'] is empty

make sure to do the same with request.form['title']

https://www.reddit.com/r/flask/comments/2tdxas/af_the_browser_or_proxy_sent_a_request_that_this/?st=j0kb98k5&sh=d28ae010

转载于:https://my.oschina.net/mickelfeng/blog/864414

你可能感兴趣的文章
浅谈Linux下的EXT3文件系统
查看>>
一步一步搭建apache+tomcat 负载均衡集群
查看>>
java 环境搭建
查看>>
JAVA程序员面试总结
查看>>
单例模式的几种方法
查看>>
win7组策略脚本无法执行
查看>>
ubuntu 访问windows共享目录
查看>>
Servlet3.1规范翻译 - 注解和可插拔性
查看>>
mac idea快捷键使用方法
查看>>
linux重启与关机--reboot、halt
查看>>
python对kafka的基本操作
查看>>
02. NPM 和 expressJs
查看>>
C语言判断“1000年—2000年”之间的闰年
查看>>
詹妮弗安妮斯顿与皮特离婚是说的话
查看>>
instr和substr函数
查看>>
我的移动开发情缘
查看>>
多态学习小记
查看>>
如何解封被 ESET Internet Security 干掉的 https?
查看>>
magento不同店面,分类、产品url不同
查看>>
JavaScript之选择器
查看>>