热门标签 | HotTags
当前位置:  开发笔记 > 编程语言 > 正文

flask+ajaxpost400错误

表单代码

表单代码

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21


               


                   

                   

               


               


                 

                 

               


               


                 

                 

               


                mode_edit

               

               

               


               

               

           

           

ajax代码:

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23

python代码

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
@web.route('/tpush/pl',methods=['POST'])

def web_tpush():

    cname = request.form['cname']

    cemail = request.form['email']

    curl = request.form['curl']

    #ctext = request.form['ctext']

    print(cname,cemail,curl)

    error = None

    if len(cname) <2:

        error = '666'

    if len(cemail) <5:

        error = '777'

    if error is not None:

        return jsonify({'r':1,'error':error})

    return jsonify({'r':0,'rs':ok})

我点击提交后跳转到/tpush/pl
提示:

1
2
3
4
5
4000 Bad Request



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

127.0.0.1 - - [13/May/2017 19:57:42] "POST /tpush/pl HTTP/1.1" 400 -

127.0.0.1 - - [13/May/2017 19:57:42] "POST /tpush/pl HTTP/1.1" 400 -



推荐阅读
author-avatar
换个风格回复
这个家伙很懒,什么也没留下!
PHP1.CN | 中国最专业的PHP中文社区 | DevBox开发工具箱 | json解析格式化 |PHP资讯 | PHP教程 | 数据库技术 | 服务器技术 | 前端开发技术 | PHP框架 | 开发工具 | 在线工具
Copyright © 1998 - 2020 PHP1.CN. All Rights Reserved | 京公网安备 11010802041100号 | 京ICP备19059560号-4 | PHP1.CN 第一PHP社区 版权所有