Welcome to OStack Knowledge Sharing Community for programmer and developer-Open, Learning and Share
Welcome To Ask or Share your Answers For Others

Categories

0 votes
66 views
in Technique[技术] by (71.8m points)

javascript - Use json data from get request as an argument in an ajax request

I have a variable which it's data comes from .getJSON and the variable itself is used as an argument inside an Ajax request. But when the ajax request is sent it returns None. How do I use the data which was gotten from the request in an ajax argument.

var analyses = {};
$.getJSON('{% url "core:analyses" bilan=slug %}', function(data) {
 analyses = data;
 console.log(analyses)
 
});
$(document).on('submit', '#download-form',function(e){
    e.preventDefault();
$.ajax({
    type:'POST',
    url:'{% url "core:tel-bilan" %}',
    data:{
        csrfmiddlewaretoken:$('input[name=csrfmiddlewaretoken]').val(),
        bilan : '....',
        analyse : analyses
    },
})})
question from:https://stackoverflow.com/questions/65912102/use-json-data-from-get-request-as-an-argument-in-an-ajax-request

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome To Ask or Share your Answers For Others

1 Answer

0 votes
by (71.8m points)
Waitting for answers

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome to OStack Knowledge Sharing Community for programmer and developer-Open, Learning and Share
Click Here to Ask a Question

...