我在 Twig 模板中有一个循环,它返回多个值。最重要的 - 我的条目的 ID。当我没有使用任何框架或模板引擎时,我只是file_exists()
在循环中使用。现在,我似乎无法在 Twig 中找到方法。
当我在标题中显示用户的头像时,我file_exists()
在控制器中使用,但我这样做是因为我没有循环。
我在 Twig 中尝试defined
过,但它对我没有帮助。有任何想法吗?
如果要检查不是 twig 模板的文件是否存在(这样定义的不能工作),请创建一个 TwigExtension 服务并将 file_exists() 函数添加到 twig:
src/AppBundle/Twig/Extension/TwigExtension.php
<?php
namespace AppBundle\Twig\Extension;
class FileExtension extends \Twig_Extension
{
/**
* Return the functions registered as twig extensions
*
* @return array
*/
public function getFunctions()
{
return array(
new Twig_SimpleFunction('file_exists', 'file_exists'),
);
}
public function getName()
{
return 'app_file';
}
}
?>
注册您的服务:
src/AppBundle/Resources/config/services.yml
# ...
parameters:
app.file.twig.extension.class: AppBundle\Twig\Extension\FileExtension
services:
app.file.twig.extension:
class: %app.file.twig.extension.class%
tags:
- { name: twig.extension }
就是这样,现在您可以在树枝模板中使用 file_exists() ;)
一些template.twig:
{% if file_exists('/home/sybio/www/website/picture.jpg') %}
The picture exists !
{% else %}
Nope, Chuck testa !
{% endif %}
编辑回答您的评论:
要使用 file_exists(),你需要指定文件的绝对路径,所以你需要 web 目录的绝对路径,这样做可以访问你的 twig 模板 app/config/config.yml 中的 web 路径:
# ...
twig:
globals:
web_path: %web_path%
parameters:
web_path: %kernel.root_dir%/../web
现在您可以在 twig 模板中获取文件的完整物理路径:
{# Display: /home/sybio/www/website/web/img/games/3.jpg #}
{{ web_path~asset('img/games/'~item.getGame.id~'.jpg') }}
因此,您将能够检查文件是否存在:
{% if file_exists(web_path~asset('img/games/'~item.getGame.id~'.jpg')) %}
我创建了一个 Twig 函数,它是我在这个主题上找到的答案的扩展。我的asset_if
函数有两个参数:第一个是要显示的资产的路径。如果第一个资产不存在,则第二个参数是备用资产。
创建您的扩展文件:
src/Showdates/FrontendBundle/Twig/Extension/ConditionalAssetExtension.php:
<?php
namespace Showdates\FrontendBundle\Twig\Extension;
use Symfony\Component\DependencyInjection\ContainerInterface;
class ConditionalAssetExtension extends \Twig_Extension
{
private $container;
public function __construct(ContainerInterface $container)
{
$this->container = $container;
}
/**
* Returns a list of functions to add to the existing list.
*
* @return array An array of functions
*/
public function getFunctions()
{
return array(
'asset_if' => new \Twig_Function_Method($this, 'asset_if'),
);
}
/**
* Get the path to an asset. If it does not exist, return the path to the
* fallback path.
*
* @param string $path the path to the asset to display
* @param string $fallbackPath the path to the asset to return in case asset $path does not exist
* @return string path
*/
public function asset_if($path, $fallbackPath)
{
// Define the path to look for
$pathToCheck = realpath($this->container->get('kernel')->getRootDir() . '/../web/') . '/' . $path;
// If the path does not exist, return the fallback image
if (!file_exists($pathToCheck))
{
return $this->container->get('templating.helper.assets')->getUrl($fallbackPath);
}
// Return the real image
return $this->container->get('templating.helper.assets')->getUrl($path);
}
/**
* Returns the name of the extension.
*
* @return string The extension name
*/
public function getName()
{
return 'asset_if';
}
}
注册您的服务(app/config/config.yml
或src/App/YourBundle/Resources/services.yml
):
services:
showdates.twig.asset_if_extension:
class: Showdates\FrontendBundle\Twig\Extension\ConditionalAssetExtension
arguments: ['@service_container']
tags:
- { name: twig.extension }
现在在您的模板中使用它,如下所示:
<img src="{{ asset_if('some/path/avatar_' ~ app.user.id, 'assets/default_avatar.png') }}" />
我和Tomek有同样的问题。我使用了 Sybio 的解决方案并进行了以下更改:
app/config.yml => 在 web_path 末尾添加“/”
parameters:
web_path: %kernel.root_dir%/../web/
在没有“资产”的情况下调用 file_exists :
{% if file_exists(web_path ~ 'img/games/'~item.getGame.id~'.jpg') %}
希望这可以帮助。
这是我的解决方案,使用 SF4、autowire 和 autoconfigure:
namespace App\Twig;
use Twig\Extension\AbstractExtension;
use Twig\TwigFunction;
use Symfony\Component\Filesystem\Filesystem;
class FileExistsExtension extends AbstractExtension
{
private $fileSystem;
private $projectDir;
public function __construct(Filesystem $fileSystem, string $projectDir)
{
$this->fileSystem = $fileSystem;
$this->projectDir = $projectDir;
}
public function getFunctions(): array
{
return [
new TwigFunction('file_exists', [$this, 'fileExists']),
];
}
/**
* @param string An absolute or relative to public folder path
*
* @return bool True if file exists, false otherwise
*/
public function fileExists(string $path): bool
{
if (!$this->fileSystem->isAbsolutePath($path)) {
$path = "{$this->projectDir}/public/{$path}";
}
return $this->fileSystem->exists($path);
}
}
在 services.yaml 中:
services:
App\Twig\FileExistsExtension:
$projectDir: '%kernel.project_dir%'
在模板中:
# Absolute path
{% if file_exists('/tmp') %}
# Relative to public folder path
{% if file_exists('tmp') %}
我是 Symfony 的新手,所以欢迎大家发表评论!
另外,由于最初的问题是关于 Symfony 2,也许我的答案不相关,我最好自己提出一个新问题和答案?
改进 Sybio 的答案,我的版本不存在 Twig_simple_function,例如,这里没有任何东西适用于外部图像。所以我的文件扩展名文件是这样的:
namespace AppBundle\Twig\Extension;
class FileExtension extends \Twig_Extension
{
/**
* {@inheritdoc}
*/
public function getName()
{
return 'file';
}
public function getFunctions()
{
return array(
new \Twig_Function('checkUrl', array($this, 'checkUrl')),
);
}
public function checkUrl($url)
{
$headers=get_headers($url);
return stripos($headers[0], "200 OK")?true:false;
}
只需对 Sybio 的贡献添加一点评论:
Twig_Function_Function 类自 1.12 版起已弃用,并将在 2.0 版中删除。请改用 Twig_SimpleFunction。
我们必须通过 Twig_SimpleFunction 更改类 Twig_Function_Function:
<?php
namespace Gooandgoo\CoreBundle\Services\Extension;
class TwigExtension extends \Twig_Extension
{
/**
* Return the functions registered as twig extensions
*
* @return array
*/
public function getFunctions()
{
return array(
#'file_exists' => new \Twig_Function_Function('file_exists'), // Old class
'file_exists' => new \Twig_SimpleFunction('file_exists', 'file_exists'), // New class
);
}
public function getName()
{
return 'twig_extension';
}
}
其余的代码仍然像 Sybio 所说的那样工作。