$ _REQUEST有数据,但$ this-> input-> get

时间:2016-03-28 11:54:17

标签: angularjs codeigniter

我将参数传递给控制器​​中的代码点火器功能

$http.get('http://localhost/demoProject/index.php/fabricGrn/getFabPOPendingById', {
            params: {'fabIdArray': fabIdsArray}
           }).success(function(response2)
           {
             console.log("respnse 2", response2);
           });

在codeigniter功能中,

function getFabPOPendingById()
    {
        var_dump($_REQUEST); //data
        var_dump($_GET);//null
        var_dump($this->input->get());//null
    }

为什么我无法通过params访问传递给函数的$http.get对象。什么是理想的方式和其他可能的方法呢?

$ _REQUEST与$ _GET有什么不同?

据我所知,$_GET在codeigniter中是$this->input>get()。为什么没有通过$http传递数据?

0 个答案:

没有答案