我对我的代码有一个问题。
我使用$post将数组发送到do.insert_hp.
$(document).ready(function(){
$('#submit_button').click(function(){
if (confirm("Are you sure you want to Process this form?")){
var form=$('#form2').serialize();
$.ajax({
url:"do/do_insert.php",
method:"POST",
data:form,
success:function(){
$('#form2')[0].reset();
alert('Process Success');
}
});
}
});
});
然后在do_insert过程中循环该值。
foreach($_GET["contract"] as $k=>$val1){
//code here
}
这是我的合同动态领域。
$data1 = json_decode($_POST['myData']);
//$data = json_decode(stripslashes($_POST['data']));
if (is_array($data1) || is_object($data1))
{
$count = 0;
echo "<tr id='row'> ";
foreach($data1 as $mydata){
$count++;
//echo "<td width='197'><input type='text' id='contract.".$mydata->Id."' name= 'contract[]' value='".$mydata->Id."'/></td>";
echo "<td width='197'><input type='hidden' id='contract.".$mydata."' name= 'contract[]' value='".$mydata."'/></td>";
}
echo "</tr> ";
echo "<tr id='row'> ";
echo "<td width='197'>Total Record</td>";
echo "<td width='197'><input type='text' id='total' name= 'total' value='".$count."'/></td>";
echo "</tr> ";
}
我的表格
<form id="form2" name="form2" method="POST">
<td><input name='submit_button' type='button' id='submit_button' value='Submit' class='btn'/></td>
<table id="dynamic_field">
</table>
</form>
问题是,当我在do_insert.php中使用$_get时,进程将运行,但当我将其更改为$_post时,它将是错误的,错误是"未定义的索引:合同">
你能帮我做这个吗?之前谢谢
尝试使用type:"POST",
而不是method:"POST",
。
method:
是type:
的别名,但仅限于jQuery 1.9