yuchao 发表于 2018-2-11 12:01:40


            ������Ӻ���ʵ��
//�������
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]
查看完整版本: thinkphp����ģ��ͨ�����ݱ༭��Ӻ�ɾ����ʵ������