1

我想使用表中的数据和动态设置的 SQL 查询中的 PID 运行此 flexform 代码。

那可能吗?

<label>Selectbox from DB</label>
<config>
  <type>select</type>
  <items type="array">
    <numIndex index="0" type="array">
      <numIndex index="0"></numIndex>
      <numIndex index="1"></numIndex>
    </numIndex>
  </items>
  <foreign_table>tt_content</foreign_table>
  <foreign_table_where>
     AND tt_content.pid = 22   <<<< no good at all.... What to do?
  </foreign_table_where>
</config>

如果只有 FF 可以访问 PID,任何这些都可以正常工作:

  • PID 设置为插件的存储文件夹
  • TS 中设置的 PID
  • PID 在另一个 flexform 字段中设置(重新加载),然后在查询中使用

BR。安德斯

4

1 回答 1

0

“半”答案是为插入插件的页面设置的存储文件夹。可以使用标记###STORAGE_PID###直接访问页面存储文件夹

在上面的示例中使用此行:

  <foreign_table_where>
     AND tt_content.pid = ###STORAGE_PID###
  </foreign_table_where>

但我仍然想知道如何重用像这样的 flexform 或静态扩展模板中设置的 TS 中的值:

  <foreign_table_where>
     AND tt_content.pid = FIELD:previousFieldInThisFlexformAvailableAfterReload
  </foreign_table_where>
于 2013-03-05T15:04:38.317 回答