实际上我正在尝试从html表中获取数据并使用jQuery将其存储到MYSQL表我能够从html表中获取数据但是无法将其放在mysql中因此我必须使用jsp但我不知道怎么能我将multidimentional数组传递给jsp,任何人都可以帮助我
我的jquery代码:
jQuery('#blBtnOk').on('click', function() {
var rows = [];
row = {};
$("#tblSlctd tbody tr").each(function () {
row['name'] = ($(this).children('td:eq(0)').text());
row['qntity'] = ($(this).children('td:eq(1)').text());
rows.push(JSON.stringify(row));
});
$.ajax({
url: "abc.jsp",
type: "post",
data: {
'rows[]': row
},
contentType: 'application/json; charset=utf-8',
dataType: 'json',
async: false,
success: function(msg) {
alert("Successfully posted "+JSON.stringify(json));
}
});
我的abc.jsp代码:
st.execute("insert into table1 values('"+ request.getParameter("name") + "', 12)");