在视图中:
function updateData(that){
f = new test();
for (var i = 0; i < dataContext.length; i++)
{
f.test.push(new Person(dataContext[i].test, dataContext[i].test1, dataContext[i].Line1, dataContext[i].Id));
}
$.post("<?php echo $base_url;?>index.php/controller/function/<?php echo $details['Id'];?>", { data: JSON.stringify(f) }, function (res) {
});
}
现在在 php 函数中,函数:
function () {
print_r($_POST);
}
返回一个空数组。
数据基本上在 javascript 向导中。似乎当我单击“完成”时,页面不会自行刷新。$_POST 仅在页面首次加载时调用。
我对javascript很陌生,不知道我做错了什么,干杯。