简体   繁体   中英

How send data from js to flask

i have issue to send data in flask from js. I try use ajax. 在此处输入图像描述

AJAX code

      $.ajax({
        type: "GET",
        contentType: "application/json;charset=utf-8",
        url: "/getmethod/data",
        traditional: "true",
        data: JSON.stringify({data}),
        dataType: "json"
        });
 

Python code

def get_javascript_data(data):

    content = request.get_data('data')
    jsonify(content)

If u got some tips or tricks please tell me.

new_item = $('#input').val() //value I want to send 
$.ajax({ 
    url: '/set_value', 
    type: 'POST', 
    data: new_item,
    success: function(response){ 
        $('#main').text(response) 
    } 
})

in flask:

new_item = request.get_data()

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM