0

我正在尝试了解 RESTfull 控制器和 Laravel 3 路由。我创建了一个 restfull 控制器文章,现在想创建以下方法:

GET: index 
GET: write // (new but new is reserved)
GET: edit

POST: create
PUT: update

DELETE: destroy

然而,在我开始之前,当New article我在我的视图中按下应该重定向到的链接时,我一直被重定向,articles/write而不是我被重定向到带有 chrome 错误的空白页面:Chrome 找不到本地主机。

我的控制器:

<?php

class Articles_Controller extends Base_Controller {

  public $restful = true;

    public function get_index()
    {
        return View::make('articles.index', array('articles' => Article::all()));
    }

    public function get_write()
    {
        return View::make('articles.new');
    }

    public function post_create()
    {
        return 'Created';
    }

}

我的路线:

?php


Route::get('/', 'home@index');

// Articles
Route::controller('articles');

我的观点:

<h1>Todays articles:</h1>
<?php

    if(sizeof($articles) == 0)
    {
        echo 'No articles published';
    }
?>
<br /><br />
<?= HTML::Link('articles/write', 'New article') ?>
4

1 回答 1

1

尝试使用

HTML::link_to_action('articles@write', 'New article');

application/config/app.php并在tohttp://localhosthttp://127.0.0.1!中设置您的根 URL

于 2013-05-29T07:56:51.353 回答