我试图获取一个表的所有行,检查复选框并将其保存在data1数组中并将post请求发送到python函数。
<script>
var data1 = new Array();
$("input[type='checkbox'] :checked").each(function(){
data1 = $(this).parent().siblings().map(function (){
return $(this).text().trim();
}).get();
});
$.ajax({
url : "check_myws_params",
type :"POST",
data : {the_post : data1}
});
</script>
def check_myws_params(environ,start_response):
request_body_size = int(environ.get('CONTENT_LENGTH', 0))
request_body = environ['wsgi.input'].read(request_body_size)
d = parse_qs(request_body)
data=d.get('the_post')
print data //returns None.how to get the returned data1 from ajax.
在ajax中生成有效负载是否缺少部分?