Django Book 翻译
菜单>:
TOC
返回
原文:
Dot lookups can be nested multiple levels deep. For instance, the following example uses ``{{ person.name.upper }}`` , which translates into a dictionary lookup (``person['name']`` ) and then a method call (``upper()`` ):
翻译:
句点查找可以多级深度嵌套。例如在下面这个例子中 ``{{person.name.upper}}`` 会转换成字典类型查找( ``person['name']`` ) 然后是方法调用( ``upper()`` ):
备注:
译者: