0

我正在通过有关 Slim 框架的教程进行工作。作者使用 Twig,我更喜欢使用 Plates 模板引擎。baseUrl在作者开始使用和pathFor扩展之前,我已经能够修改所有课程以使用 Plates 模板。

我看到 Plates 有一个名为 URI 的扩展名,我认为它与 Twig 的pathFor.

不幸的是,我一生都无法弄清楚如何启用它。阅读文档,我认为下面的代码可以做到这一点,但到目前为止还没有运气。

require 'vendor/autoload.php';

$app = new Slim\App([
    'settings' => [
        'displayErrorDetails' => true
    ]
]);

$container = $app->getContainer();

$container['view'] = function ($container) {
    $plates = new League\Plates\Engine(__DIR__ . '/templates');
    $plates->loadExtension(new League\Plates\Extension\URI($_SERVER['PATH_INFO']));
    return $plates;
};

$app->get('/contact', function($request, $response) {
    return $this->view->render('contact');
});

$app->post('/contact', function($request, $response) {
    return $response->withRedirect('http://slim-local.com/contact/confirm');
})->setName('contact');

$app->get('/contact/confirm', function($request, $response) {
    return $this->view->render('contact_confirm');
});

$app->run();

然后在模板中,作者使用pathFor扩展来填充表单的操作参数。我正在尝试使用 Plates 的 URI 扩展来做同样的事情:

<form action="<?=$this->uri('contact')?>" method="post">

有没有人专门使用过这个模板引擎和 Slim 的 URI 扩展?我误认为它基本上是 TwigpathFor扩展的同义词吗?我应该放弃并只使用 Twig 吗?谢谢你的建议。

4

1 回答 1

1

您可以使用URIfrom 环境。

苗条 3 示例:

$container['view'] = function ($container) {
    $plates = new \League\Plates\Engine(__DIR__ . '/templates');

    $uri = \Slim\Http\Uri::createFromEnvironment(new \Slim\Http\Environment($_SERVER));
    $plates->loadExtension(new \League\Plates\Extension\URI($uri->__toString()));

    return $plates;
};
于 2018-06-01T13:07:26.013 回答