我想运行我的cakephp代码

时间:2014-11-21 10:51:39

标签: cakephp-2.5

我开始学习cakephp,我做了一些事情,但我怎么能运行它?在哪里,我可以看到我制造和看到它有效吗?

我尝试将/app/View/Posts/index.ctp输入到网址栏。

谢谢!

1 个答案:

答案 0 :(得分:2)

我认为你必须阅读:http://book.cakephp.org/2.0/en/getting-started.html

您的网址取决于很多参数,路由器,控制器。

默认用法:

当您的网址为:site.com/presentation/user/a/b/c

它调用" presentationController"和"用户"该控制器的方法。并添加参数a,b,c。

您的控制器将显示

PresentationController extends AppController{

    //$param 1 = a  , $param2 = b , $param c=3 (in the example above)
    //it will call the view (by default again) View/presentation/user.ctp
    public function user($param1,$param2,$param3){
        //do what you want with params or call models or others...
    }
}