我通过ajax发送数据,但是它已成功发布但未发布所有数据。就像我发布了185个json对象,但它只发布了185个对象中的142个。 我的代码是
$.post( "<?= $this->webroot ?>st/getall", ( data ),function( htmlData ) {
alert('rgrgr');
console.log(htmlData);
$("#submit").prop('disabled', true);
$("#blank").remove();
$("#tb tr:first").after(htmlData);
},'html');