我爱编程

flask的get_json方法

2018-04-07  本文已影响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",
               
              })
上一篇 下一篇

猜你喜欢

热点阅读