jquery post请求响应是我的索引控制器的视图,但我不是在那里指导它。我有自定义路线

时间:2014-08-25 12:57:07

标签: php jquery json codeigniter post

我在这里使用最新版本的codeigniter。

我从这篇帖子请求中得到的是我的观点。我很沮丧。

我的路线:

$route['default_controller'] = "veebn";
$route['404_override'] = '';
$route['(:any)'] = "veebn/boshh/$1";

我的帖子请求:

$.post( "veebn/create_url", { weburl: weburl, width: width, height: height, dee: dee })
          .done(function( data ) {
             u = data;
             //alert(u);
    });

我的控制器:

public function create_url()
    {
        if($_POST['weburl'])
        {
            $u = $_POST['weburl'];
        }
        else
        {
            $width = NULL;
        }
        if($_POST['width'])
        {
            $width = $_POST['width'];
        }
        else
        {
            $width = NULL;
        }
        if($_POST['height'])
        {
            $height = $_POST['height'];
        }
        else
        {
            $width = NULL;
        }

        $deet = $_POST['dee'];
        //create new img
        echo $this->Img_model->get_url($u, $width, $height).$deet; 
    }

1 个答案:

答案 0 :(得分:0)

尝试isset()你的if else语句。

样品

if(isset($_POST['weburl']))