4

我在树枝上有我的看法

我有一个数组,它有或没有键值我需要如何检查它是否存在?

例如{{ weather.wind.deg }},目前可能没有风度,所以weather.wind数组将不包含一个元素女巫键度如何检查它是否有?也许我应该在我过去之前这样做?这里的某个地方?

$app->get('/', function () use ($app) {
    return $app['twig']->render('index.html.twig', array(
            'weather' => $app['weather_service']->get($app['location_service']->get()),
            'location' => $app['location_service']->get())
    );
});
4

1 回答 1

7

在您的树枝模板中,您可以执行以下操作:

{% if weather.wind.deg is defined %}
        make your things
{% endif %}
于 2013-09-12T18:11:40.183 回答