- iOS/Objective-C 元类和类别
- objective-c - -1001 错误,当 NSURLSession 通过 httpproxy 和/etc/hosts
- java - 使用网络类获取 url 地址
- ios - 推送通知中不播放声音
我有一个模板,它总是接收一个可迭代对象,所以我可以迭代它。在循环中,每个“结果”中的对象可能具有也可能不具有显示图像所需的属性,因此我一直在尝试使用“已定义”:。例如:
{% for result in results %}
{% if result.thumbnail is defined %}
<img src='{{ result.thumbnail }}' >
{% endif %}
{% endfor %}
但是当我运行它时,我总是从 Twig 得到同样的错误:
Method 'thumbnail' is not implemented
我认为“已定义”方法会为我解决这个问题。我错过了什么?
我正在使用 Twig (1.18) 和 Silex (~1.2)。
谢谢你,拉塞尔
更新
这是当迭代器中有两个对象时 {{ dump(result) }}
的输出:
object(Turtle\Model\Attachment)[1056]
protected 'datatype' => string 'Attachments' (length=11)
protected 'filename' => string '560166.jpg' (length=10)
protected 'displayname' => null
protected 'description' => null
protected 'collection' => string 'product' (length=7)
protected 'width' => int 360
protected 'height' => int 360
protected 'file' => string '/9j/4QP+RXhpZgAASUkqAAgAAAAYAAABAwABAAAA8AAAAAEBAwABAAAAtAAAAAIBAwADAAAALgEAAAYBAwABAAAAAgAAAA4BAgAgAAAANAEAAA8BAgAFAAAAVAEAABABAgAJAAAAWQEAABIBAwABAAAAAQAAABUBAwABAAAAAwAAABoBBQABAAAAYgEAABsBBQABAAAAagEAACgBAwABAAAAAgAAADEBAgAeAAAAcgEAADIBAgAUAAAAkAEAABMCAwABAAAAAgAAAAGkAwABAAAAAAAAAAKkAwABAAAAAAAAAAOkAwABAAAAAAAAAAakAwABAAAAAAAAAAikAwABAAAAAAAAAAmkAwABAAAAAAAAAAqkAwABAAAAAAAAAKXEBwAcAAAApAEAAGmHBAABAAAAwAEAAJgDAAAIAAgACAAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgAFNPTlkARFNDLVAyMDAAgPwKABAnAACA/AoAECcAAEFk'... (length=34432)
protected 'mimetype' => string 'image/jpeg' (length=10)
protected 'subdir' => string 'products/acme' (length=16)
protected 'admupdated' => null
protected 'website' => string 'gaspares' (length=8)
protected 'contentids' => null
protected 'category' => null
protected 'id' => string 'pIPp0QP_TYqA0JuWmPGBmw' (length=22)
protected 'app' => null
protected 'entity' => null
protected 'item' => null
protected 'namefield' => string 'filename' (length=8)
protected 'filterfield' => null
protected 'progress' =>
array (size=0)
empty
public 'checksum' => string 'c3d3f0194b988297e603367d5fd3837b' (length=32)
object(Turtle\Model\Product)[1055]
protected 'datatype' => string 'Products' (length=8)
protected 'state' => null
protected 'manufacturer' => string '****' (length=7)
protected 'code' => string '560166' (length=6)
protected 'ghost' => boolean false
protected 'discontinued' => boolean false
protected 'title' => string '****' (length=39)
protected 'summary' => string '****' (length=43)
protected 'description' => string '****' (length=407)
protected 'information' => string '****' (length=257)
protected 'delivery' => string 'Next Working Day, On A' (length=22)
protected 'delivery_type' => string 'On A UPS Before 12.30 Service' (length=29)
protected 'tagname' => null
protected 'tag' =>
array (size=7)
0 => string 'AR4' (length=3)
1 => string 'AR3' (length=3)
2 => string 'AR2' (length=3)
3 => string 'AR5 ' (length=4)
4 => string 'AR7' (length=3)
5 => string 'AR6' (length=3)
6 => string 'AR1' (length=3)
protected 'warranty' => string '1 Year' (length=6)
protected 'catid' => null
protected 'cost' => string '74.46' (length=5)
protected 'price' => null
protected 'image' => string 'products/acme/560166.jpg' (length=27)
protected 'thumbnail' => string 'products/acme/thumb560166.jpg' (length=32)
protected 'techinfo' => string 'notechinfo.jpg' (length=14)
protected 'checksum' => string '4db345d582ac77dcd5594dc75bc2726d' (length=32)
protected 'lastmodified' => int 1424208468
protected 'admupdated' => null
protected 'id' => string 'IF8B94PuRieIsHWARfI51w' (length=22)
protected 'app' => null
protected 'entity' => null
protected 'item' => null
protected 'namefield' => string 'code' (length=4)
protected 'filterfield' => null
protected 'progress' =>
array (size=0)
empty
可以看出,第一个对象没有“缩略图”,但第二个对象有。 Twig 在第一个上爆炸了。
更新 2
为了提供更完整的图片,我现在运行的代码具有更新的语法,如@prisoner 所建议的:
{% for result in results %}
<div class='row'>
<div class='col-md-1 col-md-offset-1'>
{% if result.thumbnail is defined and result.thumbnail is not empty %}
<a href="{{ app.url_generator.generate('product_show', {'id': result.id}) }}">
<img src='/images/{{ result.thumbnail }}' align='left' height='75'>
</a>
{% endif %}
</div>
</div>
{% endfor %}
不幸的是,这并没有解决问题,我得到了和以前一样的错误。这次是完整的:
Twig_Error_Runtime: An exception has been thrown during the rendering of a template ("Method 'thumbnail' not implemented") in "search_results" at line 4. (uncaught exception) at /usr/local/turtle/lib/vendor/twig/twig/lib/Twig/Template.php line 304 {"exception":"[object] (Twig_Error_Runtime: An exception has been thrown during the rendering of a template (\"Method 'thumbnail' not implemented\") in \"search_results\" at line 4. at /usr/local/turtle/lib/vendor/twig/twig/lib/Twig/Template.php:304
我原以为'defined'会检查属性是否存在,可能使用property_exists之类的,这样在检查时就不会抛出错误。
更新 3
我向两位评论者@prisoner 和@Alan Tiemblo 道歉,我确实有神奇的 setter 方法。我忘记了在迭代器中设置的两个类都扩展了一个“模型”类,其中包含 __get 和 __set 方法。
这会影响我所看到的吗?是否出于某种原因,Twig 无法使用父类?
最佳答案
为了处理这种情况,我习惯使用 default过滤器:
{% if result.thumbnail|default('') != '' %}
{# ... #}
{% endif %}
编辑:
Twig 的属性访问器看不到魔法 getter(参见 \Twig_Template::getAttribute
方法)。
相反,随便调用你的 magic getter:
{% if result.__get('thumbnail')|default('') != '' %}
{# ... #}
{% endif %}
关于php - Twig "is defined"是否适用于可迭代对象?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/28579751/
我正在尝试添加 ace editor到我的应用程序。我从 github 下载它,将“ace/lib/ace”目录放到我的应用程序目录中,包括: " 在我的正文标签中: editor = ace.edi
如果有人能介绍一下 TypeScript 1.8 模块,我将不胜感激。 我有 SomeClass.ts 文件: export class SomeClass { } 然后,在我的 app.ts 中导入
今天,当我阅读php内核代码时,在目录:php5.3/Zend/Zend.h中,有一行代码让我很困惑。 代码如下: /* overloaded elements data types */ #defi
今天看php的内核代码,在php5.3/Zend/Zend.h目录下,有一行代码搞得我一头雾水。 代码如下: /* overloaded elements data types */ #define
我有一个相当大的项目,我试图将所有 JS 文件连接到一个文件中。我已经能够做到这一点,但我在实际将这两个文件实现到代码中时遇到了麻烦。 我的 Gruntfile 有一个执行串联的任务: require
1在以下示例中似乎没有必要(并且可能具有误导性),但是在用于检查 #ifdef 时我已经多次看到这种情况s: #ifndef __NEWLIB_H__ #define __NEWLIB_H__ 1 使
感谢您提供的任何帮助。我有一个 Grails 项目,我正在尝试将 Karma 安装到其中。但是,当我运行时 ./gradlew 构建 我收到以下错误: [x-10-105-56-234]SENG519
我从 Frontend Developer Interview Coding Questions 得到了这个问题.为什么下面的代码片段会打印它打印的内容?我最初认为它会抛出一个 ReferenceEr
之前的问题描述有歧义,所以我在下面修改了一些东西。谢谢。 我想像这样实现一些宏: #define AddVariable(x) \ #define x (++counter) class Ba
我知道我正试图朝自己的腿开枪 ;) 但是,它可以让我使其余(大量)代码更小且更易读。 有什么技巧可以在另一个预处理器宏中创建预处理器宏吗? 这是我正在寻找的示例。我的真实场景更复杂 // That's
在 Microsoft 的 WinDef.h 中引入了几个用于回调的#defines: #ifdef _MAC #define CALLBACK PASCAL #define WINAPI
我知道我想在腿上开枪;)但是,它可以让我使其余(大量)代码更小且更具可读性。 在另一个预处理器宏中创建预处理器宏有什么棘手的方法吗? 这是我正在寻找的示例。我的真实场景更复杂 // That's wh
当我使用这段代码时: #include #define STR(x) #x int main(void) { printf(__FILE__ STR(__LINE__) "hello!\n"
今天的问候, 您好,我是使用 vb 6.0 的初学者。我正在使用以下代码并获得“用户定义类型未定义”。代码在下面。我得到错误的行被突出显示。请帮助。我应该添加一些引用或组件吗?如果是这样,它会是什么。
当我尝试编译此代码时,在 VB6 中出现编译错误“用户定义的类型未定义”。谁能告诉我需要做什么来解决这个错误?以下是我收到错误的行: Public Conn As ADODB.Connection P
我最近将我的应用程序从 Ember 1.3 升级到了 Ember 2.4.2。然而,在使用 ember build --env production 将其部署到我的生产环境后,我注意到了一些问题。 第
这个问题在这里已经有了答案: Getting user-defined type not defined error when running code (2 个回答) 3年前关闭。 我在运行程序以通
在我的一个项目中,我最近进行了重构并重命名了很多。完成此步骤后,一切正常,所有单元测试都通过了,但是我遇到了以下问题。 当我在VBE中执行“编译”时,确实出现了“用户定义的类型未定义”错误,并出现两种
所以我的 Visual Studio 将 tag1 和 tag2 都声明为未定义,但它们的定义很清楚,我不能根据另一个定义一个吗? #define push 99 #de
在 Excel 2007 中,我有以下非常简单的 VBA 代码: Public Type specType sb As Long End Type Private Sub MyButton_C
我是一名优秀的程序员,十分优秀!