A
Size: a a a
A
A
ᅠᅠ
window.beforeunload = function() {
var a = 'exit'
$.ajax({
url: 'send-info',
method: 'post',
dataType: 'json',
data: {'the_post':a},
});
reconnect = true;
return a;
};
ᅠᅠ
A
window.beforeunload = function() {
var a = 'exit'
$.ajax({
url: 'send-info',
method: 'post',
dataType: 'json',
data: {'the_post':a},
});
reconnect = true;
return a;
};
$.ajax({
url: url,
method: 'post',
dataType: type,
data: data,
success: function(data) {
},
error: function(data) {
}
});
ᅠᅠ
$.ajax({
url: url,
method: 'post',
dataType: type,
data: data,
success: function(data) {
},
error: function(data) {
}
});
ᅠᅠ
$.ajax({
url: url,
method: 'post',
dataType: type,
data: data,
success: function(data) {
},
error: function(data) {
}
});
A
ᅠᅠ
A
A
def get_post(request):
the_post = None
if request.method == 'POST':
ᅠᅠ
def get_post(request):
the_post = None
if request.is_ajax() == 'POST':
the_post = request.POST.get('the_post')
print(the_post)
return HttpResponse(the_post)
A
ᅠᅠ
A
ᅠᅠ
ᅠᅠ
A
def get_post(request):```
the_post = None
if request.is_ajax():
the_post = request.POST.get('the_post')
print(the_post)
return HttpResponse(the_post)
ᅠᅠ
A