美文网首页我爱编程
flask的get_json方法

flask的get_json方法

作者: 樊海鹏 | 来源:发表于2018-04-07 19:41 被阅读0次

jquery的ajax默认使用application/x-www-form-urlencoded, 只能
通过requet.form.get('xxxx')

若想使用 data = request.get_json()需要设置contentType

$.ajax({
                  type: 'POST',
                  url: '/sql_lab/execute_sql',
                  data: JSON.stringify( {sql: editor.getValue(), strategy: 'render_json', database: $('#database-picker').val()}),
                  dataType: "json",
                  contentType: "application/json; charset=utf-8",
               
              })

相关文章

网友评论

    本文标题:flask的get_json方法

    本文链接:https://www.haomeiwen.com/subject/rxtuhftx.html