如何循环html数据制作[{},{}]格式,向后台传递多个数据
Posted 葫芦娃啊
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了如何循环html数据制作[{},{}]格式,向后台传递多个数据相关的知识,希望对你有一定的参考价值。
var allobject=[ ];
$(‘.P_center‘).each(function(){
//获取对象所需要的值
var courseId = $(this).data(‘id‘);
var buyNum = $(this).data(‘quantity‘);
var buyPrice = $(‘.P_su‘).text();
//将获取好的值保存到对象中
var object = {
"courseId":courseId,
"buyNum":buyNum,
"buyPrice":buyPrice
}
//将对象保存到数组中
allobject.push(object );
});
//将数组转换为json类型的字符串
var allobjectJSON = JSON.stringify(allobject);
//获取对象所需要的值
var courseId = $(this).data(‘id‘);
var buyNum = $(this).data(‘quantity‘);
var buyPrice = $(‘.P_su‘).text();
//将获取好的值保存到对象中
var object = {
"courseId":courseId,
"buyNum":buyNum,
"buyPrice":buyPrice
}
//将对象保存到数组中
allobject.push(object );
});
//将数组转换为json类型的字符串
var allobjectJSON = JSON.stringify(allobject);
以上是关于如何循环html数据制作[{},{}]格式,向后台传递多个数据的主要内容,如果未能解决你的问题,请参考以下文章
MVC中前台如何向后台传递数据------$.get(),$post(),$ajax(),$.getJSON()总结
springmvc 后台向页面EasyUI的Datagrid传递数据(JSon格式)