duanfei1268 2018-04-30 15:39
浏览 57
已采纳

Json编码codeigniter中的错误

I tried to load a view in my codeigniter controller and also i pass a status to my ajax function. In the ajax function i wrote a sweetalert popup in the sucess function when my status is 1. now my actual problem is when i load a view in the controller the status is not passing to my ajax function.can anyone figureout what the problem is any help is appreciable.

controller

$query = $this->package_view_model->enquiry_history();
    if (isset($query))
      {
        $status = 1;
        $this->load->view('packages/enquiry');
      }
    echo json_encode (array("status"=>$status));

ajax function

function sendMail(package_url)
{   
    var formData = $("#enqform").serialize();
      jQuery.ajax({
          type: 'POST',
          url: '<?php echo base_url() ?>tour-package/send-mail',
          data: formData,
          dataType: 'json',
          success: function(data){
            if(data.status == 1){
                swal({
                       title:'Thankyou for your interest!!!',
                       text: "Our excecutives will contact you soon.",
                       html: true,
                       type: "success",
                       showCancelButton: false,
                       showConfirmButton:false
                   });
                window.setTimeout(function() {
                    window.location.href = '<?php echo base_url() ?>tour-packages';
                }, 1000000);
            }
          }
      }); 
      return false;
      e.preventDefault();
  }
  • 写回答

2条回答 默认 最新

  • download2014711 2018-04-30 16:05
    关注

    Hope this will help you :

    $query = $this->package_view_model->enquiry_history();
    $status = 1;
    if (! empty($query))
    { 
       $this->load->view('packages/enquiry');
    }
    echo json_encode(array("status" => $status));
    exit;
    
    本回答被题主选为最佳回答 , 对您是否有帮助呢?
    评论
查看更多回答(1条)

报告相同问题?

悬赏问题

  • ¥15 metadata提取的PDF元数据,如何转换为一个Excel
  • ¥15 关于arduino编程toCharArray()函数的使用
  • ¥100 vc++混合CEF采用CLR方式编译报错
  • ¥15 coze 的插件输入飞书多维表格 app_token 后一直显示错误,如何解决?
  • ¥15 vite+vue3+plyr播放本地public文件夹下视频无法加载
  • ¥15 c#逐行读取txt文本,但是每一行里面数据之间空格数量不同
  • ¥50 如何openEuler 22.03上安装配置drbd
  • ¥20 ING91680C BLE5.3 芯片怎么实现串口收发数据
  • ¥15 无线连接树莓派,无法执行update,如何解决?(相关搜索:软件下载)
  • ¥15 Windows11, backspace, enter, space键失灵