CException

SubmitController cannot find the requested view "6".

/wwwroot/website/i.xpaper.net/framework/web/CController.php(878)

866     {
867         if(($viewFile=$this->getViewFile($view))!==false)
868         {
869             $output=$this->renderFile($viewFile,$data,true);
870             if($processOutput)
871                 $output=$this->processOutput($output);
872             if($return)
873                 return $output;
874             else
875                 echo $output;
876         }
877         else
878             throw new CException(Yii::t('yii','{controller} cannot find the requested view "{view}".',
879                 array('{controller}'=>get_class($this), '{view}'=>$view)));
880     }
881 
882     /**
883      * Renders a named clip with the supplied parameters.
884      * This is similar to directly accessing the {@link clips} property.
885      * The main difference is that it can take an array of named parameters
886      * which will replace the corresponding placeholders in the clip.
887      * @param string $name the name of the clip
888      * @param array $params an array of named parameters (name=>value) that should replace
889      * their corresponding placeholders in the clip
890      * @param boolean $return whether to return the clip content or echo it.

Stack Trace

#0
+
 /wwwroot/website/i.xpaper.net/protected/controllers/SubmitController.php(90): CController->renderPartial("6", array("base_rs" => SiteBase, "logo" => "/logo/neiqiubao/20190418141000584012486.png", "push_data" => Push_data, "select_arr" => array("请选择栏目"), ...))
85        $array['logo']=$logo;
86        $array['push_data']=$push_data;
87        $array['select_arr']=$select_arr;
88        $array['adlink_text_rs']=$adlink_text_rs;
89        $array['adlink_img_rs']=$adlink_img_rs;
90        $this->renderPartial($views,$array);
91       
92     }
93 
94     //接受ajax上传的值
95     public function actionSubmit(){
#13
+
 /wwwroot/website/i.xpaper.net/index.php(15): CApplication->run()
10 defined('YII_DEBUG') or define('YII_DEBUG',true);//调试定为 true   上线改成 false
11 // specify how many levels of call stack should be shown in each log message
12 defined('YII_TRACE_LEVEL') or define('YII_TRACE_LEVEL',3);
13 
14 require_once($yii);
15 Yii::createWebApplication($config)->run();
2024-03-29 08:48:50 Apache Yii Framework/1.1.13