getResources Modx返回null?

时间:2015-10-18 14:23:51

标签: modx getresource

我正在尝试使用getResources从其他资源访问某些电视,但没有返回任何内容。

这是我的代码示例

 [[getResources? 
      &resources=`13` 
      &tvPrefix=`tv.` 
      &tpl=`@CODE:[[+tv.DefaultEmail]]` 
      &showHidden=`1` 
      &includeContent=`1` 
      &includeTVs=`1` 
      &processTVs=`1` 
 ]]

1 个答案:

答案 0 :(得分:1)

您必须使用@INLINE作为模板参数(请参阅https://rtfm.modx.com/extras/revo/getresources#getResources-TemplatingProperties中的@FILE和@INLINE tpls)

&tpl=`@INLINE [[+tv.DefaultEmail]]`

但我最好安装FastField以使用以下标记语法[[#13.DefaultEmail]]。