������Ӻ���ʵ��
//�������
public function newData($strName="")
{
if (IS_POST) {
//����û��ύ����
$model = D("$strName");
if (!$model->create()){
// �������ʧ�� ��ʾ��֤û��ͨ�� ���������ʾ��Ϣ
$info = array(
"info"=>"{$model->getError()}",
"status"=>"n",
);
$this->ajaxReturn($info,'json');
exit();
} else {
if ($model->add()){
$info = array(
"info"=>"��ϲ�����ɹ���",
"status"=>"y",
);
$this->ajaxReturn($info,'json');
} else {
$info = array(
"info"=>"����ʧ�ܣ�",
"status"=>"n",
);
$this->ajaxReturn($info,'json');
}
}
}
}
页:
[1]